@charset "UTF-8";
.heading[id]::before {
  content: "";
  display: block;
  height: 20rem;
  margin-top: -20rem;
  visibility: hidden;
}
span.aks {
  display: inline-block;
}
/* ホバーでメニュー表示させたいとき
.dropdown:hover > .dropdown-menu {
  display: block;
}
*/
p .lnk-button .btn.btn-outline-primary {
  margin: 0.1rem;
  margin-bottom: 0.3rem;
}
html {
  scroll-padding-top: 90px; /* 固定ヘッダの高さ分 */
}
.card-title {
  text-align: center;
}
/* ページトップ */
/*パソコン・スマホ共通のCSS*/
#PageTopBtn {
  position: fixed; /*ボタンの配置場所を固定*/
  bottom: -10px; /*下からのボタンの配置場所を指定*/
  right: 10px; /*右からのボタンの配置場所を指定*/
}
#PageTopBtn a {
  display: block; /*配置の調整*/
  text-decoration: none; /*文字の下線を消す*/
  color: #fff; /*文字の色*/
  background: #90ee90; /*ボタンの背景色*/
  text-align: center; /*文字を中央に配置*/
  border-radius: 50%; /*ボタンの角を少し丸くする*/
  outline: none; /*クリックしたときの黒い枠を消す*/
}
#PageTopBtn a:hover {
  text-decoration: none;
  background: #228b22; /*マウスオーバー時の背景色*/
}
#main_contents {
  padding-top: 40px;
}
/*サイト全体のフォント指定*/
h1 {
font-family: "Helvetica", "ヒラギノ丸ゴ ProN",sans-serif
}