.sub_inner {
  max-width: 1120px;
  padding: 0 20px;
}

.title {
  font-size: 2.5rem;
}

.item {
  line-height: 1.7
}

.omiage h4 {
  border-left: #ec6103 3px solid;
  padding: 5px;
  margin: 10px 0;
  font-size: 1.7rem;
}

.item p {
  margin-bottom: 20px;
  font-size: 1.8rem;
}

.item img {
  max-width: 100%;
  height: auto;
}

/* .item 内のリンクは青（木工館のじゃらん等）。一覧に戻るは .item 外なので対象外 */
.item a {
  color: #0033cc;
}

/* 菓子工房：お菓子画像を横3枚・同一サイズで表示（2枚目参考） */
.kashi-products__img-wrap {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.kashi-products__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* 投稿詳細：一覧に戻る（≫ 一覧に戻る・元HTMLの b_link 風） */
.single-post__back {
  margin-top: 30px;
  margin-bottom: 0;
  text-align: center;
}
.single-post__back-link {
  display: inline-block;
  color: #333;
  text-decoration: none;
  font-size: 1.4rem;
}
.single-post__back-link:hover {
  text-decoration: underline;
}

.t_sub {
  font-size: 2rem;
  border-top: 1px solid #bbb;
  border-bottom: 1px solid #bbb;
  padding: 10px;
  line-height: 1.3;
  margin: 30px 0 25px;
  background: linear-gradient(#fff, #f7f9f8)
}

.t_sub i {
  color: #ec6103;
  margin-right: 10px;
}

.box strong {
  display: block;
  font-size: 1.6rem;
  margin-top: 10px;
  text-align: center;
}

table.detail {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  margin-bottom: 40px;
  table-layout: fixed;
}

table.detail th,
table.detail td:first-child {
  text-align: left;
  border: solid #bbb 1px;
  padding: 10px;
  width: 30%;
  max-width: 240px;
  min-width: 120px;
  background: antiquewhite;
  font-weight: bold;
  box-sizing: border-box;
}

table.detail td {
  text-align: left;
  border: solid #bbb 1px;
  padding: 10px;
  min-width: 180px;
}


.detail strong {
  font-size: 1.2rem;
}

.oshinagakiTxt {
  padding: 20px 0;
}

.oshinagakiTxt p {
  font-size: 1.4rem;
}

.oshinagakiTxt table {
  border-bottom: 1px solid #ccc;
  border-top: 1px solid #ccc;
  width: 100%;
}

.oshinagakiTxt table tbody tr td,
.oshinagakiTxt table tbody tr th {
  font-size: 14px;
  padding: 10px 30px 10px 0;
  max-width: auto;
  vertical-align: middle;
}

.oshinagakiTxt table tbody tr th {
  text-align: left;
  width: 198px;
  padding-left: 5px;
}

.oshinagakiTxt table tbody tr td {
  text-align: right;
}

@media screen and (max-width:767px) {
  table.detail {
    display: block;
    width: 100%;
  }

  table.detail th,
  table.detail td {
    display: inline-block;
    width: 95%;
    min-width: auto;
  }

  .oshinagakiTxt table {
    display: block;
  }

  .oshinagakiTxt table tbody tr td,
  .oshinagakiTxt table tbody tr th {
    display: inline-block;
    width: 95%;
    min-width: auto;
  }
}

/* お知らせ一覧：前の10件へ・次の10件へを記事一覧の両端に配置 */
/* 中間ページでは左に「次の10件へ」、右に「前の10件へ」で両端配置 */
.news-pagination {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.news-pagination a {
  color: #333;
  text-decoration: none;
}
.news-pagination a:hover {
  text-decoration: underline;
}