@charset "UTF-8";

/*
*	Title:「 chorome以外のログイン時の注意喚起ポップアップ 」ページ要素CSS
*	File Nmae: login_modal.css
*	Last Modified: 2024-02-23
*/


/*-----------------------------------------------------------
	chorome以外のブラウザログイン時の注意喚起ポップアップ
------------------------------------------------------------*/

.popup {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: .6s;
    background: rgba(0, 0, 0, 0.083);
  }
  .popup.is-show {
    opacity: 1;
    visibility: visible;
  }
  .popup-inner {
		position: absolute;
		left: 50%;
		top: 50%;
		width: 622px;
		height: 338px;
		background: #E5EFF3 0% 0% no-repeat padding-box;
		border: 10px solid #B8C2CA;
		transform: translate(-50%,-50%);
    z-index: 2;
  }
  .popup-inner img {
    width: 100%;
  }
  .close-btn {
    position: absolute;
    top: -10px;
    right: -10px;
    display: block;
    width: 32px;
    height: 32px;
    cursor: pointer;
  }
  .close-btn i {
    display: inline-block;
    width: 100%;
    height: 100%;
    text-indent: -9999px;
    background: #b6c3cc url("../img/btn_close.png") no-repeat center center;


    _font-size: 120px;
    _color: #333;
  }
  .black-background {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 1;
    cursor: pointer;
  }
  .alert {
		margin-top:60px;
		font-size:14px;
    line-height:24px;
    text-align: center;
  }
  .large2 {
    cursor : pointer;
  }
