/* 共通 */

html {
  overflow-x: hidden;
  cursor: pointer;
}

body {
  font-family: "メイリオ", "Meiryo", "ヒラギノ角ゴ Pro",
    "Hiragino Kaku Gothic Pro", "Noto Sans Japanese", Osaka, "ＭＳ Ｐゴシック",
    "MS PGothic", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  font-size: 12px;
}

h1 {
  font-size: 20px;
  text-align: center;
  margin-top: 20px;
}

#header {
  background: #849b42 0% 0% no-repeat padding-box;
  opacity: 1;
  color: white;
  padding: 10px 8px 14px 8px;
  font-size: 12px;
  height: 40px;
}

#footer {
  background: #849b42 0% 0% no-repeat padding-box;
  opacity: 1;
  color: white;
  padding-top: 8px;
  font-size: 12px;
  height: 60px;
}

#camera {
  width: 100%;
}

#picture {
  width: 100%;
}

/* マップ表示領域 */

#mapid {
  height: 320px;
}

/* 全ボタンの表示領域 */

#button-area {
  height: 30vh;
}

#list-area {
  font-size: 10px;
  height: auto;
}

#contents {
  height: auto;
}

.list {
  font-size: 10px;
}

.button {
  background: #fdfdfd 0% 0% no-repeat padding-box;
  box-shadow: 3px 3px 6px #00000029;
  border: 1px solid #707070;
  border-radius: 10px;
  opacity: 1;
  font-size: 12px;
  padding: 12px;
  margin: 18px 4px 16px 4px;
}

.button-camera {
  background: #fdfdfd 0% 0% no-repeat padding-box;
  box-shadow: 3px 3px 6px #00000029;
  border: 1px solid #707070;
  border-radius: 10px;
  opacity: 1;
  font-size: 12px;
  padding: 12px;
  margin: 18px 4px 16px 4px;
}

.one-button {
  width: 164px;
}

.button-center {
  margin: 0 auto;
}

.vibrate-count {
  height: 10vw;
}

.vibrate-count-string {
  font-size: 12px;
}

.row-scrollable {
  overflow-x: auto !important;
  white-space: nowrap !important;
}

.bs-padding-reset {
  padding: 0;
}

.font-small {
  font-size: 10px;
}

.footer-match {
  margin-bottom: 74px;
}

.gutters-left-reset {
  padding-left: 0;
}

.gutters-right-reset {
  padding-right: 0;
}

.form-width {
  width: 100%;
}

.button-area-scrollable {
  overflow-x: hidden !important;
  overflow-y: scroll !important;
  position: relative;
}

.image_picker_image {
  height: 100%;
  width: 100%;
}

.see-more {
  text-align: right;
}

.btn-see-more {
  background: #849b42 0% 0% no-repeat padding-box !important;
  border-color: #849b42 !important;
}

.thumbnails li {
  float: center;
}

/* The side navigation menu */

.sidenav {
  height: 100%;
  /* 100% Full-height */
  width: 0;
  /* 0 width - change this with JavaScript */
  position: fixed;
  /* Stay in place */
  z-index: 1;
  /* Stay on top */
  top: 0;
  /* Stay at the top */
  left: 0;
  background-color: #fff;
  /* Black*/
  border: 1px solid #707070;
  overflow-x: hidden;
  /* Disable horizontal scroll */
  padding-top: 60px;
  /* Place content 60px from the top */
}

/* The navigation menu links */

.sidenav a {
  padding: 8px 8px 8px 32px;
  text-decoration: none;
  font-size: 15px;
  color: #110c0c;
  display: block;
  border-bottom: 1px solid #707070;
}

/* When you mouse over the navigation links, change their color */

.sidenav a:hover {
  color: #f1f1f1;
}

/* Position and style the close button (top right corner) */

.sidenav .btn-close-menu {
  position: absolute;
  top: 0;
  right: 25px;
  font-size: 36px;
  margin-left: 50px;
}

.navbar {
  padding-top: 25px;
  padding-bottom: 14px;
}

/* Style page content - use this if you want to push the page content to the right when you open the side navigation */

#main {
  transition: margin-left .5s;
  padding: 20px;
}

/* On smaller screens, where height is less than 450px, change the style of the sidenav (less padding and a smaller font size) */

@media screen and (max-height: 450px) {
  .sidenav {
    padding-top: 15px;
  }

  .sidenav a {
    font-size: 18px;
  }
}

.menu-space {
  padding: 0px 20px 10px 20px;
}

.menu-title {
  padding-top: 20px;
  text-align: center;
}

.menu-btn {
  width: 100%;
}

button.menu-text {
  background: #849b42 0% 0% no-repeat padding-box !important;
  border-color: #849b42 !important;
}

.row-sizable {
  height: 132px;
}

.select-form {
  width: 110px;
}

switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 30px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 24px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  top: 2px;
  background-color: white;
  content: attr(data-unchecked);
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider {
  background-color: #849b42;
}

input:focus + .slider {
  box-shadow: 0 0 1px #849b42;
}

input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
  content: attr(data-checked);
}

/* Rounded sliders */

.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

.memo-text {
  font-size: 11px;
}

.section_header {
  font-size: 14px;
  border-bottom: 10px solid #849b42;
}

.description {
  border-bottom: 1px solid #849b42;
}

.sel_column {
  width: 100%;
}

.refinement{
  text-align:right;
  padding-left: 20px; 
  padding-right: 20px;
  padding-bottom: 14px;
}
.animal {
  text-align:center;
  color: green;
  height:25px;
  font-size:100%;
}
.refinement_label{
  font-size:5px;
  padding-bottom: 2px;
}
