/* -------------------------------------------------- */
/* テキスト */
/* -------------------------------------------------- */

/* 中央寄せ */
.t-center {
  text-align: center;
}

/* -------------------------------------------------- */
/* ヘッダー */
/* -------------------------------------------------- */

/* コピー */
.head_copy {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 24px;
}

/* コピー：左右要素 */
.head_copy::before,
.head_copy::after {
  content: "";
  width: 50px;
  height: 50px;
  background-repeat: no-repeat;
  background-size: contain;
}

/* コピー＞コンテナ */
.head_copy>.head_copy_container {
  display: flex;
  justify-content: center;
}

/* コピー：左要素 */
.head_copy::before {
  background-image: url(../img/star_left.png);
}

/* コピー：右要素 */
.head_copy::after {
  background-image: url(../img/star_right.png);
}

/* コピー＞要素 */
.head_copy .item {
  margin: 0 1em;
}

/* コピー＞要素＞段落 */
.head_copy .item>p {
  font-size: 32px;
  font-weight: bold;
  text-align: center;
}

/* 改行無し */
.line_keep {
  white-space: nowrap;
}

/* 文字装飾：円 */
.back_circle {
  display: inline-block;
  margin: 0 0.25em;
  position: relative;
  color: #b62627;
}

/* 文字装飾：円 */
.back_circle::before {
  content: "";
  background-color: rgba(255, 0, 0, 20%);
  width: 1.75em;
  height: 1.75em;
  border-radius: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}


@media screen and (max-width: 767px) {

  /* コピー＞コンテナ */
  .head_copy>.head_copy_container {
    flex-direction: column;
    align-items: center;
  }

  /* コピー＞要素：間隔 */
  .head_copy .item+.item {
    margin-top: 1em;
  }

}

/* -------------------------------------------------- */
/* テーブル */
/* -------------------------------------------------- */

/* セル幅調整 */
table {
  table-layout: fixed;
}

/* -------------------------------------------------- */
/* バナー */
/* -------------------------------------------------- */

/* 画像 */
img.banner_image {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}