@charset "UTF-8";
/* single.php 全体 */
.single-news {
  background: #FFF9E5;
  padding: 40px; /* 左右40pxの余白 */
  min-height: 100vh;
}

/* 投稿日 */
.single-date {
  font-size: 16px;
  color: #3A3A3A;
  margin-bottom: 20px;
}

/* タイトル */
.single-title {
  text-align: center;
  font-size: clamp(20px, 4vw, 36px);
  color: #000;
  font-weight: bold;
  margin-bottom: 40px;
}

/* 画像 */
.single-image {
  text-align: center;
  margin-bottom: 40px;
}

.single-image img {
  max-width: 100%;
  height: auto;
}

/* 説明文 */
.single-text {
  max-width: 960px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.8;
  color: #000;
}

/* 一覧に戻るボタン */
.single-back {
  margin-top: 80px;
  text-align: center;
}

.single-back a {
  display: inline-block;
  background: #DA7400;
  color: #fff;
  text-decoration: none;
  padding: 0.8em 2em;
  border-radius: 100px;
  font-size: clamp(16px, 2vw, 24px);
  font-weight: bold;
  border: 2px solid #DA7400;
  transition: 0.3s;
}

.single-back a:hover {
  background: #fff;
  color: #DA7400;
}

/* モバイル */
@media (max-width: 500px) {
  .single-news {
    padding: 20px;
  }
}/*# sourceMappingURL=single.css.map */