/* 画像選択肢の全体表示用CSS */
/* 拡大画像モーダル */
#image-zoom-view,
#image-zoom-view-no-frame,
#image-zoom-view *,
#image-zoom-view-no-frame *  {
  box-sizing: border-box;
  max-width: 100%;
  max-height: 100%;
}
#image-zoom-view,
#image-zoom-view-no-frame {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
}
#image-zoom-view .image-zoom-modal {
  width: 70%;
  height: 82%;
  position: relative;
  top: 9%;
  left: 15%;
  margin-top: 10px;
  padding: 20px 50px;
  background-color: #f9f9f9;
  -webkit-box-shadow: 2px 2px 1em rgba( 0, 0, 0, .75 );
  -moz-box-shadow: 2px 2px 1em rgba( 0, 0, 0, .75 );
  box-shadow: 2px 2px 1em rgba( 0, 0, 0, .75 );
}
#image-zoom-view-no-frame .image-area {
  width: 100%;
  height: 82%;
  position: relative;
  top: 100px;
  left: 0;
  margin-top: 10px;
  padding: 5px;
}

#image-zoom-view .image-area {
  width: 100%;
  height: 100%;
  padding-bottom: 70px;
  text-align: center;
  /* display: table; */
}
#image-zoom-view.has-textbox .image-area {
  padding-bottom: 110px;
}

#image-zoom-view .image-wrapper,
#image-zoom-view-no-frame .image-wrapper {
  /* height: auto; */
  height: 100%;
  width: auto;
  /* display: table-cell; */
  vertical-align: middle;
}
#image-zoom-view .image-wrapper img,
#image-zoom-view-no-frame .image-wrapper img {
  display: block;
  max-height: 100%;
  margin: auto;
}
#image-zoom-view .caption-area {
  position: absolute;
  bottom: 20px;
  left: 0;
  width: 100%;
  height: 70px;
  padding: 0 50px;
  overflow: hidden;
}
#image-zoom-view.has-textbox .caption-area {
  bottom: 50px;
}
#image-zoom-view.has-textbox .afterEdit {
  position: absolute;
  height: 40px;
  bottom: 20px;
  width: 100%;
  left: 0;
  top: auto;
  padding: 0 50px;
}

#image-zoom-view .caption {
  width: 100%;
  height: 100%;
  line-height: 1.2em;
  padding: 5px 0;
  /*overflow-y: scroll;*/
}
#image-zoom-view .arrow {
  position: absolute;
  top: 50%;
  margin-top: -20px;
  width: 20px;
  height: 40px;
}
#image-zoom-view .arrow-left {
  left: 15px;
  border-bottom: 20px solid transparent;
  border-right: 18px solid #999;
  border-top: 20px solid transparent;
}
#image-zoom-view .arrow-right {
  right: 15px;
  border-bottom: 20px solid transparent;
  border-left: 18px solid #999;
  border-top: 20px solid transparent;
}
#image-zoom-view .close,
#image-zoom-view-no-frame .close {
  position: absolute;
  top: 60px;
  right: 10px;
  width: 46px;
  height: 46px;
  background-image: url(../images/btn-close-modal.png);
}
#image-zoom-view .empty {
  width: 100%;
  height: 100%;
  display: table;
  background-color: #ddd;
}
#image-zoom-view .empty > span {
  display: table-cell;
  height: 100%;
  width: 100%;
  vertical-align: middle;
}
@media only screen and (max-width:800px) {
    .bronzeTheme #image-zoom-view .checked .check-imagechoice {
      display: block;
      width: 82px;
      height: 82px;
      position: absolute;
      top: -5px;
      right: -5px;
      z-index: 30;
      opacity: 1;
      filter: alpha(opacity=100);
      -ms-filter: "alpha(opacity=100)";
      -moz-opacity: 1;
      -khtml-opacity: 1;
    }
}
#image-zoom-view .checked .check-imagechoice {
  display: block;
  width: 82px;
  height: 82px;
  background-image: url(../images/check-imagechoice.png);
  position: absolute;
  top: -5px;
  right: -5px;
  z-index: 30;
  opacity: 1;
  filter: alpha(opacity=100);
  -ms-filter: "alpha(opacity=100)";
  -moz-opacity: 1;
  -khtml-opacity: 1;
}

/* #imagelightbox { */
/*     cursor: pointer; */
/*     position: fixed; */
/*     z-index: 10002; */
/*     -ms-touch-action: none; */
/*     touch-action: none; */
/*     /\* -webkit-box-shadow: 0 0 3.125em rgba( 0, 0, 0, .75 ); *\/ */
/*     /\* -moz-box-shadow: 0 0 3.125em rgba( 0, 0, 0, .75 ); *\/ */
/*     /\* box-shadow: 0 0 3.125em rgba( 0, 0, 0, .75 ); *\/ */
/* } */

/* .choiceimage-imagelightbox-frame { */
/*     position: fixed; */
/*     z-index: 10001; */
/*     background-color: white; */
/*     width: 200px; */
/*     height: 200px; */
/*     top: 0; */
/*     left: 0; */
/* } */

/* .imagelightbox-caption */
/* { */
/*     position: absolute; */
/*     width: 100%; */
/*     bottom: 0; */
/*     height: 20px; */
/* } */

/* .imagelightbox-arrow */
/* { */
/*     width: 20px; /\* 60 *\/ */
/*     height: 40px; /\* 120 *\/ */
/*     background-color: #ffff; */
/*     background-repeat: no-repeat; */
/*     background-position: center; */
/*     vertical-align: middle; */
/*     display: none; */
/*     position: absolute; */
/*     z-index: 10001; */
/*     top: 50%; */
/*     margin-top: -3.75em; /\* 60 *\/ */
/* } */
/* .imagelightbox-arrow-left */
/* { */
/*     left: 0; /\* 40 *\/ */
/*     background-image: url(../images/btn_prev_sp.png); */
/* } */
/* .imagelightbox-arrow-right */
/* { */
/*     right: 0; /\* 40 *\/ */
/*     background-image: url(../images/btn_next_sp.png); */
/* } */

/* .choiceimage-imagelightbox-grayout { */
/*     position: fixed; */
/*     top: 0; */
/*     left: 0; */
/*     height: 100%; */
/*     width: 100%; */
/*     background: black; */
/*     filter:alpha(opacity=50); */
/*     opacity: 0.50; */
/*     z-index: 100; */
/* } */

.choiceimage-image {
    max-width:100px;
    max-height:100px;
    display:bock;
    margin-left:auto;
    margin-right:auto;
}

.highcharts-container {
    overflow: visible;
}

/* .choiceimage-popup { */
/*     color: rgba(255, 255, 255, 1); */
/*     display: none; */
/*     position: relative; */
/*     background: rgba(0, 0, 0, 0.9); */
/*     border: 1px solid #000000; */
/*     padding: 10px; */
/*     z-index: 100; */
/*     white-space: normal; */
/*  } */
/* .choiceimage-popup:after, .choiceimage-popup:before { */
/*      bottom: 100%; */
/*      left: 50%; */
/*      border: solid transparent; */
/*      content: " "; */
/*      height: 0; */
/*      width: 0; */
/*      position: absolute; */
/*      pointer-events: none; */
/* } */
/* .choiceimage-popup:after { */
/*     border-color: rgba(0, 0, 0, 0); */
/*     /\* border-bottom-color: rgba(0, 0, 0, 0.8); *\/ */
/*     border-bottom-color: #000000; */
/*     border-width: 10px; */
/*     margin-left: -10px; */
/* } */
/* .choiceimage-popup:before { */
/*     border-color: rgba(255,255,255,0); */
/*     border-bottom-color: #888888; */
/*     border-width: 10px; */
/*     margin-left: -10px; */
/* } */
