@charset "utf-8";
/* スマフォ画面 */
.zoom_view {
  display: flex;
  flex-direction: column;
}
#thumb {
  width: 280px;
  height: 280px;
  margin: 0.2em 0.5em;
  border: 2px solid #ccc;
  cursor: pointer;
}
#thumb img {
  width: 100%;
}
.target_cursor {
  width: 40px;
  height: 40px;
  position: absolute;
  display: none;
  border: 1px solid #fff;
  background: rgba(131, 130, 138, .5);
}
#zoom {
  width: 280px;
  height: 280px;
  margin: 0.2em 0.5em;
  border: 2px solid #ccc;
  overflow: hidden;
  position: relative;
}
#zoom img {
  width:2800px;
  height:2800px;
  position: absolute;
  top: 0;
  left: 0;
}
@media only screen and (min-width:767px), print {
  .zoom_view {
    display: flex;
    flex-direction: row;
      width:600px;
      margin:0 auto;
  }
  #thumb {
    width: 280px;
    height: 280px;
    border: 2px solid #ccc;
  }
  #thumb img {
    width: 100%;
  }
  .target_cursor {
    width: 40px;
    height: 40px;
    position: absolute;
    display: none;
    border: 1px solid #fff;
    background: rgba(131, 130, 138, .5);
  }
  #zoom {
    width: 280px;
    height: 280px;
    border: 2px solid #ccc;
    overflow: hidden;
    position: relative;
  }
  #zoom img {
    position: absolute;
    top: 0;
    left: 0;
  }
}
@media only screen and (min-width:1024px), print {
  .zoom_view {
    display: flex;
    flex-direction:row;
    width:600px;
    margin:1em auto;
  }
  #thumb {
    width: 280px;
    height: 280px;
    border: 2px solid #ccc;
    background:#0A3956;
  }
  #thumb img {
    width: 100%;
  }
  .target_cursor {
    width: 40px;
    height: 40px;
    position: absolute;
    display: none;
    border: 1px solid #fff;
    background: rgba(131, 130, 138, .5);
  }
  #zoom {
    width: 280px;
    height: 280px;
    border: 2px solid #ccc;
    overflow: hidden;
    position: relative;
  }
  #zoom img {
    position: absolute;
    top: 0;
    left: 0;
  }
}