body {
  padding-left: 1rem;
  padding-right: 1rem;
  max-width: 1000px; /* パソコンで見たときに、文章が横に広がりすぎないためのストッパー */
  margin: 0 auto;   /* ページ全体を中央に寄せる */
  background-color: #f7f7f7;
}
.center-wrap {
  text-align: center;
}
h1 {
  text-align: center;
  margin-bottom: 0rem;
}
h1 .sub-title {
  display: block;
  font-size: 1.3rem;
  font-weight: normal;
  color: #555;
}
/* ステートメント全体のブロック */
.statement-text {
  max-width: 800px;       /* 読みやすい横幅に制限 */
  margin: 0rem auto 1rem;
  line-height: 1.5;       /* ゆったりとした行間 */
  text-align: justify;    /* 右端をピシッと揃えて輪郭を美しく */
}
/* アイコン */
.statement-badge {
  width: 5rem;
  height: 5rem;
  margin: 0rem;
  /* 丸型切り取り＆回り込みの指定 */
  border-radius: 50%;     
  shape-outside: circle(50%); 
}
/* SNSボタン */
.btn-sns {
  display: inline-block;
  width: 14rem;
  text-align: center;
  padding: 0.5rem 0;
  margin: 0.5rem;
  background-color: #000000;
  color: #ffffff;
  text-decoration: none;
  font-weight: bold;
  border-radius: 0px;
  transition: all 0.3s ease;
}
.btn-sns:hover {
  background-color: #999999;
}
/* Room名称 */
.room-title {
  text-align: center;
  margin-top: 2rem;
  margin-bottom: 1.5rem;
  color: #333333;        /* 墨色（チャコール） */
  font-size: 1.2rem;
  font-weight: normal;
  letter-spacing: 0.1rem;
}
/* 作品を包むエリア（2列化のための土台） */
.gallery-grid {
  display: flex;
  flex-direction: column; /* 基本はひたすら縦に1列 */
  gap: 2rem; /* ★スマホで見た時の作品と作品の間の心地よい縦の余白 */
  align-items: center;
}
/* 作品1つのレイアウト設定 */
.tanka-work {
  text-align: center;
  width: 100%;
}
.tanka-img {
  width: 100%;
  height: auto;
  display: inline-block;
}
/* ★パソコンなど画面が広いとき（横幅600px以上）の精密な調整 */
@media (min-width: 600px) {
  .gallery-grid {
    flex-direction: row; /* 横並びにする */
    flex-wrap: wrap;     /* 3つ目以降は自動で次の行（2列目）へ */
    justify-content: space-between; /* 左右に綺麗に美しく散らす */
    gap: 2rem 0; /* ★PC時の上下の作品間隔を2remに広げ、左右の隙間はjustifyに任せる */
    align-items: flex-start;
  }
  .tanka-work {
    width: 48%; /* 画面の約半分（左右の余白を引く必要がある）のサイズで2列に */
  }
}
/* Room移動ボタン */
.btn-room {
  display: inline-block;
  width: 8rem;          /* 少し横幅をシャープに */
  text-align: center;
  padding: 0.5rem 0;     /* 上下を少しゆったりさせて上品に */
  margin: 1rem 0.5rem;
  background-color: transparent; /* 背景を透明にして余白に溶け込ませる */
  color: #333333;        /* 墨色（チャコール） */
  font-size: 1.2rem;
  font-weight: normal;
  letter-spacing: 0.1rem;
  text-decoration: none;
  border-bottom: 1px solid #cccccc; /* 下側だけに繊細な細い線を引く */
  transition: all 0.3s ease; /* ホバー時の動きをなめらかに */
}
.btn-room:hover {
  opacity: 0.6;
  border-bottom: 1px solid #333333; /* 線を少し濃くして、静かに主張させる */
}
hr {
  border: 0;
  border-top: 2px solid #eeeeee; /* 線の色を薄くして主張を抑える */
}
.copyright {
  text-align: center;
  margin: 2rem; /* 画面最下部との間の余白 */
  color: #888888;      /* 文字の色を薄くして、主役（短歌）を邪魔しないようにする */
  letter-spacing: 0.05rem;
}
