/*
  ----------------------------------------------------
  共通スタイル定義
  ----------------------------------------------------
*/
@charset "utf-8";
body {
	font-size: 90%;
	/* line-height: 1.7; */
	color: #333;
	background-color: #ffffff;
}

.filter-menu {
  list-style-type: none;
}
.filter-content {
  padding: 3px;
  border: solid #ddd 1px;
}
.scrollable-container {
  /* overflow-y: scroll; */
  position: relative;
}

.sticky-container {
  position: -webkit-sticky;
  position: sticky;
  left: 0;
  top: 0;
  z-index: 1;
  background-color: white;
  pointer-events: none;
}
.sticky-container > * {
  pointer-events: auto;
}

.scrollable-body {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  padding-top: 105px;
}

p {
  margin: 0;
}

button, input, optgroup, select, textarea {
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

ul, ol {
  padding: 0;
  margin: 0;
  list-style-type: none;
}