﻿/* ベース設定 */
body {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.8;
  margin: 0;
  padding: 0;
  background-color: #fefefe;
  color: #333;
}

/* コンテナ中央寄せ */
.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 2em 1em;
}

/* ヘッダー */
header {
  text-align: center;
  margin-bottom: 2em;
}

header h1 {
  font-size: 2em;
  margin: 0.2em 0;
}

.subtitle {
  font-size: 1em;
  color: #777;
}

/* 各セクション */
section {
  margin-bottom: 2.5em;
}

h2 {
  font-size: 1.3em;
  border-bottom: 1px solid #ccc;
  padding-bottom: 0.2em;
  margin-bottom: 0.8em;
}

/* 作品リスト */
.works ul {
  list-style: disc;
  padding-left: 1.5em;
}

/* お問い合わせリンク */
a {
  color: #0066cc;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* フッター */
footer {
  text-align: center;
  font-size: 0.9em;
  color: #999;
  margin-top: 3em;
  padding-top: 1em;
  border-top: 1px solid #eee;
}

/* レスポンシブ対応 */
@media (max-width: 600px) {
  body {
    font-size: 15px;
  }
}

.top-image {
  text-align: center;
  margin-bottom: 2em;
}

.top-image img {
  max-width: 500px;       /* 最大幅を指定（ちょうどいいサイズ） */
  width: 100%;            /* レスポンシブ対応 */
  height: auto;           /* 縦横比率維持 */
}