/* =========================================
   谷口聡子 Official Website 共通デザイン
   ========================================= */

/* Google Fonts 読み込み（日本語：Noto Serif JP） */
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200;300;400&display=swap');

/* -------------------------------
   全体の基本設定
-------------------------------- */
body {
  font-family: "Helvetica Neue", Helvetica, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", "Noto Sans JP", sans-serif;
  font-weight: 300;
  letter-spacing: 0.03em;
  line-height: 1.9;
  color: #444;   /* やわらかいグレー */
  background-color: #fffdf9;
  margin: 0;
  padding: 0;
}

/* -------------------------------
   ヘッダー・ナビゲーション
-------------------------------- */
header {
  text-align: center;
  padding: 40px 10px 20px;
}

header h1 a {
  text-decoration: none;
  color: #111;
  font-size: 1.8rem;
  letter-spacing: 0.05em;
  font-family: Helvetica, "Helvetica Neue", Arial, sans-serif;  /* 英語部分はHelvetica */
  font-weight: 400;
}

nav {
  margin-top: 15px;
}

nav a {
  margin: 0 10px;
  text-decoration: none;
  color: #555;
  font-size: 1rem;
  letter-spacing: 0.05em;
  transition: 0.2s;
  font-family: Helvetica, "Helvetica Neue", Arial, sans-serif;
}

nav a:hover {
  color: #000;
  text-decoration: underline;
}

/* -------------------------------
   メインコンテンツ
-------------------------------- */
main {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
}

h2 {
  font-size: 1.3rem;
  border-bottom: 1px solid #ccc;
  padding-bottom: 8px;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-family: Helvetica, "Helvetica Neue", Arial, sans-serif;
}

/* 記事リスト */
ul.article-list {
  list-style: none;
  padding: 0;
}

ul.article-list li {
  margin: 12px 0;
}

ul.article-list a {
  text-decoration: none;
  color: #0066cc;
}

ul.article-list a:hover {
  text-decoration: underline;
}

/* -------------------------------
   フッター
-------------------------------- */
footer {
  text-align: center;
  font-size: 0.9rem;
  color: #777;
  padding: 40px 0;
}
/* -------------------------------
   プロフィール画像（四角く大きく）
-------------------------------- */
img.profile {
  width: 100%;
  max-width: 700px;     /* ← 写真を大きく見せたいなら 800px〜1000px に変更OK */
  height: auto;
  display: block;
  margin: 0 auto 40px;  /* 中央揃え＋下余白 */
  border-radius: 0;     /* ← 丸切り抜きを完全解除 */
  object-fit: cover;    /* 枠いっぱいに自然にフィット */
}
