@charset "utf-8";
/*
* css for modal_wrapper
*
* @version			0.0.0
* @lastmodified 2024-11-26
* @link					https://www.landcomp.co.jp/
* @copyright		Copyright 2005, LAND COMPUTER Co.,Ltd.All rights reserved.
*------------------------------------------------------------------------- */

*, *:before, *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

	.modal_wrapper {
		position: fixed; 								/* ブラウザの定位置に固定 */
		background: rgba(0, 0, 0, .3); 	/* 背景色を半透明の黒色に */
		width: 100%; 										/* 要素の横幅を画面全体に */
		height: 100%; 									/* 要素の高さを画面全体に */
		top: 0; 												/* 要素の固定位置をブラウザ最上部に合わせる */
		left: 0; 												/* 要素の固定位置をブラウザ左側に合わせる */
		z-index: 1000; 									/* 要素をコンテンツより前面に（要調整） */
	}
	.popup_content {
		/* ポップアップ本体 */
		__display: inline-block;
		__position: fixed;
		__width: 75%;
		position: relative;
		z-index: 1100;
		background: #fff;
		__padding: 2%;
		__top: 50%;
		__left: 50%;
		__transform: translate(-50%,-50%);
		__overflow-y: scroll;
	}
