/* =====================================
   1. 基本設定（Base）
===================================== */

/* 文字色の基本 */
body {
  color: #0000ff;
}

/* =====================================
   ページタイトル帯
===================================== */

.page-title {
  background-color: red;
  color: #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 20px;
  font-size: 1.5rem;
  font-weight: bold;
}

.title-left {
}

.title-right {
  font-size: 1.375rem;
}

/* =====================================
   文章部分
===================================== */

.intro {
  font-size: 1.5rem;      /* タイトルと同じ */
  margin: 20px 0 30px;
  padding-left: 1em;
  font-weight: bold;
  text-indent: 0; 
}

/* =====================================
   レイアウト共通幅
===================================== */

.container {
  max-width: 1032px;   /* ページの基準幅 */
  margin: 0 auto;      /* 中央寄せ */
  padding: 0 20px;     /* 左右の余白 */
}

/* =====================================
   戻るボタン
===================================== */

.back-area {
  text-align: center;
  margin: 40px 0;
}

.back-button {
  display: inline-block;
  background-color: #0000ff;
  color: #ffffff;
  padding: 8px 30px;
  font-size: 1.2rem;
  font-weight: bold;
  text-decoration: none;
}

.back-button:hover {
  opacity: 0.8;
}

/* 下の横線 */

.back-line {
  margin-top: 20px;
}

.back-line img {
  max-width: 100%;
  height: auto;
}

