@charset "UTF-8";
/**!
 *
 * BurgerEditor StyleSheet Style Sample v2.10.0
 *
 */
/** ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- *
 *
 * フォントの定義
 * Font Awesome 4.6.3 by @davegandy - http://fontawesome.io - @fontawesome
 * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 *
 * ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- **/
@font-face {
  font-family: 'FontAwesome';
  src: url("../fonts/fontawesome-webfont.eot?v=4.6.3");
  src: url("../fonts/fontawesome-webfont.eot?#iefix&v=4.6.3") format("embedded-opentype"), url("../fonts/fontawesome-webfont.woff2?v=4.6.3") format("woff2"), url("../fonts/fontawesome-webfont.woff?v=4.6.3") format("woff"), url("../fonts/fontawesome-webfont.ttf?v=4.6.3") format("truetype"), url("../fonts/fontawesome-webfont.svg?v=4.6.3#fontawesomeregular") format("svg");
  font-weight: normal;
  font-style: normal;
}

/** ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- *
 *
 * マルチカラムブロックのレイアウト
 *
 * ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- **/
/**
 * 大見出し
 *
 */
h2 {
  /* スタイル */
  font-size: 1.8em;
  font-weight: bold;
  line-height: 1.2;
  margin: 1.5em 0;
  padding: 0.3em 0.5em;
  text-align: center;
  background: none;
  /* 回り込み防止 */
  overflow: hidden;
}

h2:first-child {
  /* ブロックの最初の場合は余白を詰める */
  margin-top: 0;
}

h2::after {
  content: "";
  display: block;
  width: 2em;
  height: 2px;
  background: #ccc;
  margin: 0.8em auto;
}

/**
 * 中見出し
 *
 */
h3 {
  /* スタイル */
  font-size: 1.5em;
  font-weight: bold;
  line-height: 1.2;
  margin: 1em 0;
  background: none;
  padding: 0.5em 0.75em;
  background: #f6f6f6;
  border: 1px solid #eee;
  box-shadow: 1px 1px 0 rgba(255, 255, 255, 0.5) inset, -1px -1px 0 rgba(100, 100, 100, 0.1) inset;
  /* 回り込み防止 */
  overflow: hidden;
}

h3:first-child {
  /* ブロックの最初の場合は余白を詰める */
  margin-top: 0;
}

/**
 * 小見出し
 *
 */
h4 {
  /* スタイル */
  font-size: 1.3em;
  font-weight: bold;
  line-height: 1.2;
  margin: 1em 0;
  border: none;
  padding: 0.3em 0.2em;
  /* 回り込み防止 */
  overflow: hidden;
  position: relative;
}

h4:first-child {
  /* ブロックの最初の場合は余白を詰める */
  margin-top: 0;
}

h4::after {
  position: absolute;
  bottom: 0.25em;
  left: 0;
  z-index: -1;
  content: '';
  width: 100%;
  height: 8px;
  background-color: #ddd;
  border-radius: 2px;
}

/**
 * 小見出し
 *
 */
h5 {
  /* スタイル */
  font-size: 1.2em;
  font-weight: bold;
  line-height: 1.2;
  margin: 1em 0;
  padding: 0.3em 0;
  border-bottom: 1px dashed #999;
  /* 回り込み防止 */
  overflow: hidden;
}

h5:first-child {
  /* ブロックの最初の場合は余白を詰める */
  margin-top: 0;
}

/**
 * 小見出し
 *
 */
h6 {
  /* スタイル */
  font-size: 1em;
  font-weight: bold;
  line-height: 1.2;
  margin: 1em 0;
  padding: 0;
  border: none;
  border-left: 3px solid #CCC;
  background: #eee;
  padding: 0.3em 0.5em;
  /* 回り込み防止 */
  overflow: hidden;
}

h6:first-child {
  /* ブロックの最初の場合は余白を詰める */
  margin-top: 0;
}

/**
 * 文章・段落
 *
 */
p {
  /* スタイル */
  margin: 1em 0;
}

p:first-child {
  /* ブロックの最初の場合は余白を詰める */
  margin-top: 0;
}

/**
 * リスト共通
 *
 */
li {
  /* スタイル */
  list-style: inherit;
  /* 回り込み防止 */
  overflow: hidden;
}

li:first-child {
  /* ブロックの最初の場合は余白を詰める */
  margin-top: 0;
}

/**
 * 箇条書きリスト
 *
 */
ul {
  /* スタイル */
  margin: 1em 0;
}

ul:first-child {
  /* ブロックの最初の場合は余白を詰める */
  margin-top: 0;
}

ul ul {
  /* 箇条書きリストの内箇条書きリスト */
  margin: 0 0 0 1.8em;
}

ul ul:first-child {
  /* ブロックの最初の場合は余白を詰める */
  margin-top: 0;
}

ul li {
  /* 箇条書きリストアイテム */
  font-size: 20px;
  list-style-type: disc;
  margin: 0 0 1.0em 0;
}

/**
 * 番号順リスト
 *
 */
ol {
  /* スタイル */
  margin: 1em 0;
}

ol:first-child {
  /* ブロックの最初の場合は余白を詰める */
  margin-top: 0;
}

ol ol {
  /* 番号順リスト内の番号順リスト */
  margin: 0 0 0 2em;
}

ol ol:first-child {
  /* ブロックの最初の場合は余白を詰める */
  margin-top: 0;
}

ol li {
  margin: 0 0 0.2em 0;
  /* 番号順リストアイテム */
  list-style-position: inside;
  list-style-type: decimal;
  list-style-type: decimal-leading-zero;
}

/**
 * 引用
 *
 */
blockquote {
  position: relative;
  margin: 1em 0;
  padding: 1px 2.5em;
  border: none;
  border-radius: 5px;
  background: none;
  border: 2px solid #ccc;
  /* 回り込み防止 */
  overflow: hidden;
  color: #888;
  font-size: 0.9em;
}

blockquote:first-child {
  /* ブロックの最初の場合は余白を詰める */
  margin-top: 0;
}

blockquote::before {
  /* 引用 */
  content: '“';
  display: block;
  font-family: serif;
  position: absolute;
  top: 0.3em;
  left: 0.25em;
  z-index: 0;
  color: #ccc;
  font-size: 3em;
}

blockquote::after {
  /* 引用 */
  content: '”';
  display: block;
  font-family: serif;
  position: absolute;
  bottom: -0.3em;
  right: 0.25em;
  z-index: 0;
  color: #ccc;
  font-size: 3em;
}

/**
 * テーブル
 *
 */
table {
  table-layout: fixed;
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  border: none;
  margin: 1em 0;
}

@media screen and (max-width: 798px) {
  table {
    /* テーブル */
    width: 100% !important;
  }
}

table:first-child {
  /* ブロックの最初の場合は余白を詰める */
  margin-top: 0;
}

table caption {
  /* テーブルキャプション */
  font-weight: bold;
  text-align: left;
}

table tr {
  /* テーブル行 */
}

table tr:nth-child(odd) td {
  /* 奇数行 */
  background: #fff;
}

table tr:nth-child(even) td {
  /* 偶数行 */
  background: #fafafa;
}

table tr th, table tr td {
  /* テーブルセル共通 */
  text-align: left;
  padding: 0.5em;
  border: 1px solid #ccc;
}

table tr th {
  /* テーブル見出しセル */
  font-weight: bold;
  background: #eee;
}

table tr td {
  /* テーブル通常セル */
  font-weight: normal;
}

@media screen and (max-width: 798px) {
  table,
  table caption,
  table tbody,
  table tfoot {
    display: block;
  }
  table tr {
    display: block;
    margin-top: -1px;
  }
  table tr th,
  table tr td {
    width: auto;
    display: block;
  }
  table tr th {
    border-bottom: none;
  }
}

/**
 * インライン要素
 *
 */
strong {
  /* 太字 */
  font-weight: bold;
  font-style: normal;
  text-decoration: none;
}

u {
  /* 下線 */
  font-weight: normal;
  font-style: normal;
  text-decoration: underline;
}

s {
  /* 取り消し線 */
  font-weight: normal;
  font-style: normal;
  text-decoration: line-through;
}

sub {
  /* 下付き文字 */
  font-size: 0.8em;
  font-weight: normal;
  font-style: normal;
  text-decoration: none;
  vertical-align: sub;
}

sup {
  /* 上付き文字 */
  font-size: 0.8em;
  font-weight: normal;
  font-style: normal;
  text-decoration: none;
  vertical-align: super;
}

/**
 * 画像タイプのキャプション
 *
 */
.bgt-box__caption {
  text-align: left;
  font-weight: normal;
  padding: 3px;
  background: none;
  font-size: 0.8em;
}

/**
 * ボタン
 *
 */
/* ボタンタイプ */
.bgt-btn {
  display: inline-block;
  vertical-align: middle;
  padding: 12px 10px;
  border-width: 1px;
  border-style: solid;
  background: #FFF;
  text-decoration: none;
  min-width: 280px;
  border-radius: 2px;
}

.bgt-btn:active, .bgt-btn:focus {
  box-shadow: 0 0 10px 0 #0570C7, 0 0 10px 0 #fff;
}

.bgt-btn--link {
  color: #333;
  border-color: #ccc;
  background: #fff;
}

.bgt-btn--link:hover, .bgt-btn--link:active, .bgt-btn--link:focus {
  background: #e9e9e9;
}

.bgt-btn--em {
  font-weight: bold;
  color: #fff;
  border-color: #333;
  background: #333;
}

.bgt-btn--em:hover, .bgt-btn--em:active, .bgt-btn--em:focus {
  background: #555;
}

.bgt-btn--external {
  color: #333;
  border-color: #ccc;
  background: #fff;
}

.bgt-btn--external:hover, .bgt-btn--external:active, .bgt-btn--external:focus {
  background: #e9e9e9;
}

.bgt-btn--external::after {
  content: "\ea7e";
  font-family: 'icomoonfiles';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 1em;
  color: #999;
  vertical-align: middle;
}

.bgt-btn--back {
  color: #333;
  border-color: #ddd;
  background: #ddd;
}

.bgt-btn--back:hover, .bgt-btn--back:active, .bgt-btn--back:focus {
  background: #e9e9e9;
}

.bgt-btn--back span {
  display: inline-block;
  vertical-align: middle;
}

.bgt-btn--back::before {
  content: "\2039";
  font-size: 1em;
  margin-top: -2px;
  display: inline-block;
  vertical-align: middle;
}

/**
 * 区切り線
 *
 */
hr {
  width: 95%;
  height: 2px;
  background: #CCC;
  border-style: none;
  margin: 50px auto;
}

hr:first-child {
  /* ブロックの最初の場合は余白を詰める */
  margin-top: 0;
}

.bgt-hr {
  width: 100%;
  margin: 0 auto;
}

.bgt-hr--bold {
  height: 5px;
}

.bgt-hr--narrow {
  height: 1px;
}

.bgt-hr--short {
  width: 60%;
  height: 1px;
}

/* ダウンロードファイルタイプ */
.bgt-download-file__link {
  color: #333;
  text-align: left;
  font-size: 1.08em;
  font-weight: bold;
  display: inline-block;
  padding: 0.7em 1em;
  border-radius: 5px;
  box-sizing: border-box;
  border: 1px solid #ccc;
  border-radius: 3px;
  background-color: #FFF;
  line-height: 1;
  text-decoration: none;
}

.bgt-download-file__link:hover {
  background-color: #eee;
}

.bgt-download-file__link:active, .bgt-download-file__link:focus {
  box-shadow: 0 0 5px 1px #0570C7;
  outline: none;
}

.bgt-link__size {
  color: #808080;
  font-size: 0.8em;
  font-weight: normal;
}

@media screen and (max-width: 798px) {
  .bgt-google-maps-link {
    margin-top: 10px;
    padding: 1em;
    text-decoration: none;
    color: #333;
    border: solid 1px #999;
    border-radius: 3px;
    text-align: center;
  }
  .bgt-google-maps-link span {
    display: inline-block;
    vertical-align: middle;
  }
  .bgt-google-maps-link::after {
    font-family: FontAwesome;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    text-rendering: auto;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\f08e";
    font-size: 1em;
    vertical-align: middle;
  }
}
