@charset 'utf-8';



/*############################################################################*/
/*

インラインウインドウで使う

*/
/*############################################################################*/




/*背景レイヤー*/
div#inliewindowBg {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 100;
  width: 100vw;
  height: 100vh;
  background-color: #3d3e42;
  opacity: 0.6;
  display: none;
}

/*インラインウインドウ全体*/
div#inliewindow {
  box-sizing: border-box;
  position: fixed;
  /*overflow:hidden;*/
  z-index: 1000;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0px;
  padding: 10px 10px;
  max-width: 800px;
  width: 95%;
  height: 1px;
  /*高さはjsで設定*/
  background: url(../jquery.inlineopen/inliewindow.png);
}

/*インラインウインドウ本体*/
div#inliewindow iframe {
  margin: 0px 0px 0px 0px;
  padding: 0;
  width: 100%;
  height: 100%;
  overflow: scroll-y;
	background-color:#ffffff;
}

/*閉じるボタン*/
div#inliewindow a {
  position: absolute;
  z-index: 1000;
  left: -7px;
  bottom: -7px;
  display: block;
  overflow: hidden;
  padding: 0;
  padding: 29px 0px 0px 0px;
  height: 0px !important;
  height
  /**/
  : 29px;
  /* for ie5.x */
  line-height: 250%;
  width: 29px;
  background: url(../jquery.inlineopen/close.png) no-repeat left top;
  display: none;
}

div#inliewindow a:hover {
  background-position: 0px -29px;
}






