/* -------------------------------------------------- */
/* テキスト */
/* -------------------------------------------------- */

/* 中央寄せ */
.t-center {
  text-align: center;
}

/* -------------------------------------------------- */
/* ヘッダー */
/* -------------------------------------------------- */

/* コピー */
.head_copy {
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url("../../ishikyo/img/background.png");
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: contain;
  margin-bottom: 24px;
}

/* コピー：左右要素 */
.head_copy::before,
.head_copy::after {
  content: "";
  width: 100px;
  height: 100px;
  background-repeat: no-repeat;
  background-size: contain;
}

/* コピー＞コンテナ */
.head_copy>.head_copy_container {
  display: flex;
  flex-direction: column;
}

/* コピー＞コンテナ＞行 */
.head_copy>.head_copy_container>.row {
  display: flex;
  justify-content: center;
  width: 100%;
}

/* 改行無し */
.line_keep {
  white-space: nowrap;
}

/* 赤背景 */
.head_copy .item.box {
  background: #b62627;
  margin-top: 24px !important;
  margin-bottom: 24px !important;
  padding: 0 8px;
}

/* 赤背景＞段落 */
.head_copy .item.box>p {
  color: #fff !important;
  font-size: 24px;
}

/* コピー＞要素 */
.head_copy .item {
  margin: 0 1em;
}

/* コピー＞要素＞段落 */
.head_copy .item>p {
  color: inherit !important;
  font-size: 32px;
  font-weight: bold;
  text-align: center;
}

/* 文字装飾：円 */
.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>.row {
    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;
}

/* -------------------------------------------------- */
/* 3列カード */
/* -------------------------------------------------- */

/* 見出し */
.p-mv .text-box .list>div dt {
  display: flex;
  flex-direction: column;
  justify-content: end;
  min-height: 40px;
  border-bottom: solid 1px currentColor;
  margin: 0 16px;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
}

/* 文章 */
.p-mv .text-box .list_box dd {
  font-size: 2em;
  line-height: 1.15;
  font-weight: bold;
  color: #b62627;
  text-align: center;
  margin-top: 10px;
}

/* 文章＞文字サイズ：大 */
.p-mv .text-box .list_box dd>span.big {
  font-size: 1.75em;
}

/* 文字サイズ：小 */
.p-mv .text-box .list>div dt>span.small {
  display: block;
  font-size: 0.75em;
  text-align: left;
}

/* スマホ */
@media screen and (max-width: 767px) {

  /* 見出し */
  .p-mv .text-box .list>div dt {
    min-height: 32px;
    margin: 0 8px;
    font-size: 10px !important;
  }

  /* 文章 */
  .p-mv .text-box .list_box dd {
    font-size: 1.5em;
  }

}