@charset "utf-8";
/*
 * 全レイアウト共通のスタイル
 */

* {
  box-sizing: border-box;
}

html {
  color: #222;
  font-size: 1em;
  line-height: 1.4;
}

/*
 * 選択時のテキストシャドウを削除
 */
::-moz-selection {
  background: #b3d4fc;
  text-shadow: none;
}

::selection {
  background: #b3d4fc;
  text-shadow: none;
}

/*
 * 見た目がマシなhr
 */
hr {
  display: block;
  height: 1.8px;
  border: 0;
  border-top: 1.5px solid rgb(0, 0, 0);
  padding: 0;
}

/*
 * ギャップを削除 audio, canvas, iframes, images, videos
 * https://github.com/h5bp/html5-boilerplate/issues/440
 */
audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
  width: 100%;
}

/*
 * fieldset のデフォルトスタイルを削除
 */
fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

/*
 * テキストエリアのY方向の自動リサイズを許可
 */
textarea {
  resize: vertical;
}

/* ==========================================================================
    ヘルパークラス
   ========================================================================== */

/*
 * 非表示
 */
.hidden,
[hidden] {
  display: none !important;
}

/*
 * 非表示(レイアウトは考慮)
 */
.invisible {
  visibility: hidden;
}

/*
 * Clearfix: floatの解除用
 */
.clearfix::before,
.clearfix::after {
  content: " ";
  display: table;
}

.clearfix::after {
  clear: both;
}

.flex {
  display: flex;
}

.right {
  text-align: right;
}

.label-title {
  background-color: #EFEFEF;
  text-align: center;
}
.label-title p {
  font-size: 1.2rem;
  padding: 1%;
}

.bu-label-title {
  background-color: rgb(0, 0, 0);
  text-align: center;
}
.bu-label-title p {
  font-size: 1.2rem;
  color: white;
  padding: 1%;
}

.label-color {
  background-color: #D8261B;
}

.re-preparation {
  margin: 20% 0;
}

.list-tbl {
  width: 100%;
  background-color: #EFEFEF;
}

.list-tbl th {
  border-bottom: 2px solid black;
  border-left: 0px;
  border-right: 0px;
  border-top: 2px solid black;
  font-size: 0.8rem;
  padding: 1% 0;
  text-align: center;
}

.list-tbl td {
  border: 1px solid black;
  font-size: 0.8rem;
  padding: 2% 1%;
  text-align: center;
}

  /*PDFのみアイコンを付ける*/
  a[href$=".pdf"]:after {
    background: url(../img/pdf_24.png) no-repeat;
    content:" ";
    display: inline-block;
    height: 24px;
    width: 24px;
  }
  
