@charset "UTF-8";

/* 全体 */
body {
  margin: 0;
  padding: 0;
  background: #fdfdf9;
  color: #222;
  font-family:
    "Hiragino Mincho ProN",
    "Yu Mincho",
    "MS Mincho",
    serif;
  font-size: 14px;
  line-height: 1.9;
}

/* ページ幅 */
.page {
  width: 720px;
  margin: 40px auto;
  padding: 0 20px;
}

/* ヘッダー */
.site-header {
  margin-bottom: 45px;
}

.site-header h1 {
  margin: 0;
  font-size: 26px;
  font-weight: normal;
  letter-spacing: 0.08em;
}

/* タイトルリンク */
.site-header h1 a {
  color: #222;
  text-decoration: none;
}

.site-header h1 a:hover {
  background: none;
  text-decoration: underline;
}

.subtitle {
  margin-top: 4px;
  color: #666;
  font-size: 13px;
}

/* ナビゲーション */
.nav {
  margin-top: 20px;
  border-top: 1px solid #bbb;
  border-bottom: 1px solid #bbb;
  padding: 6px 0;
}

.nav a {
  color: #222;
  text-decoration: none;
  margin-right: 18px;
  font-size: 13px;
}

.nav a:hover {
  text-decoration: underline;
  background: #ffffcc;
}

/* お知らせ枠 */
.notice-box {
  border: 1px solid #aaa;
  padding: 12px 16px;
  margin-bottom: 40px;
  background: #fff;
}

.notice-box p {
  margin: 0 0 8px;
}

.notice-box p:last-child {
  margin-bottom: 0;
}

/* 記事 */
.entry {
  margin-bottom: 55px;
}

.entry h2 {
  font-size: 17px;
  font-weight: normal;
  margin: 0 0 18px;
  border-bottom: 1px dotted #999;
  padding-bottom: 4px;
}

.entry h2::before {
  content: "■ ";
  color: #333;
}

.entry p {
  margin: 0 0 1.1em;
}

/* 日付 */
.date {
  color: #777;
  font-size: 12px;
  text-align: right;
  margin-top: 20px;
}

/* 通常リンク */
a {
  color: #000000;
}

a:visited {
  color: #000000;
}

a:hover {
  background: #ffffcc;
}

/* 更新リスト */
.update-list,
.link-list {
  padding-left: 1.2em;
}

.update-list li,
.link-list li {
  margin-bottom: 6px;
}

/* プロフィール */
.profile-list {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 6px 16px;
}

.profile-list dt {
  color: #666;
}

.profile-list dd {
  margin: 0;
}

/* 作品一覧 */
.work-list {
  margin-bottom: 50px;
}

.work-item {
  display: flex;
  gap: 18px;
  border-bottom: 1px dotted #aaa;
  padding: 18px 0;
}

.work-thumb {
  width: 120px;
  height: 90px;
  border: 1px solid #999;
  background:
    repeating-linear-gradient(
      -45deg,
      #eee,
      #eee 4px,
      #fff 4px,
      #fff 8px
    );
  display: flex;
  align-items: center;
  justify-content: center;
  color: #777;
  font-size: 12px;
  flex-shrink: 0;
}

.work-text h3 {
  margin: 0 0 8px;
  font-size: 15px;
  font-weight: normal;
}

.work-text p {
  margin: 0 0 8px;
}

/* バナー */
.banner-area {
  margin: 50px 0;
  font-size: 12px;
  color: #666;
}

.banner {
  width: 200px;
  height: 40px;
  border: 1px solid #333;
  background:
    repeating-linear-gradient(
      -45deg,
      #eee,
      #eee 4px,
      #fff 4px,
      #fff 8px
    );
  display: flex;
  align-items: center;
  justify-content: center;
  color: #222;
  font-size: 12px;
  letter-spacing: 0.08em;
}

/* フッター */
.footer {
  border-top: 1px solid #bbb;
  margin-top: 60px;
  padding-top: 12px;
  color: #777;
  font-size: 12px;
}

/* スマホ対応 */
@media (max-width: 760px) {
  .page {
    width: auto;
    margin: 24px auto;
    padding: 0 18px;
  }

  .site-header h1 {
    font-size: 22px;
  }

  .nav a {
    display: inline-block;
    margin-right: 12px;
    margin-bottom: 4px;
  }

  .work-item {
    display: block;
  }

.work-thumb {
  width: 160px;
  height: 110px;
  border: 1px solid #999;
  background:
    repeating-linear-gradient(
      -45deg,
      #eee,
      #eee 4px,
      #fff 4px,
      #fff 8px
    );
  display: flex;
  align-items: center;
  justify-content: center;
  color: #777;
  font-size: 12px;
  flex-shrink: 0;
  text-decoration: none;
  overflow: hidden;
}
.work-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.work-thumb:hover {
  background: none;
  opacity: 0.8;
}

  .profile-list {
    display: block;
  }

  .profile-list dt {
    margin-top: 12px;
  }
}
.site-header::before {
  content: "◇";
  display: block;
  margin-bottom: 8px;
  color: #555;
}

.entry h2::before {
  content: "■ ";
  color: #333;
}

.footer::after {
  content: "　";
  display: block;
  height: 30px;
}
.work-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
