﻿@charset "utf-8";
/* CSS Document */
/*==================================================
ログインモーダルウィンドウ用CSS
===================================================*/
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
.confirm-dialog-overlay {
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	background: rgba(0,0,0,0.5);
	color: #000;
    position: fixed !important;
    position: absolute;
    z-index: 999;
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
    background-color: #000;
    display: none;
}

.confirm-dialog.modal {
	width: 560px;
	height: 505px;
	font-size: 16px;
	line-height: 1.2;
	border: 3px solid #fc0087;
	background: #fff;
	padding: 30px;
	margin:30px auto;
    z-index: 1000;
    text-align: left;
}
.confirm-dialog.modal h1{
	font-size: 24px;
	padding-left: 15px;
	border-left: 5px solid #fc0087;
}
.confirm-dialog.modal p{
	margin: 20px 0;
}
.confirm-dialog.modal p.billing{
	text-align: center;
}
.confirm-dialog.modal p.billing span {
	font-size: 12px;
}
/* 閉じるボタン */
.confirm-dialog button{
	background-color: transparent;
	border: none;
	cursor: pointer;
	outline: none;
	padding: 0;
	appearance: none;
}
.confirm-dialog button.icon {
    display: inline-block;
    background: #999;
    border-radius: 90px;
    width: 30px;
    height: 30px;
    cursor: pointer;
    position: relative;
    top: -10px;
    right: -10px;
    float: right;
}
.confirm-dialog-base {
    display: none;
    position: fixed;
    overflow: auto;
    overflow-x: hidden;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 3000;
    text-align: center;
}
.confirm-dialog button.icon:before, button.icon:after{
    content:''; 
    display:block; 
    height:22px; 
    width:4px; 
    background:#fff; 
    border-radius:10px;
    transform:rotate(-45deg);
    -webkit-transform:rotate(-45deg);
    -o-transform:rotate(-45deg);
	/*位置*/
    position:absolute; 
    top:4px; 
    right:13px;
}
.confirm-dialog button.icon:after{
    transform:rotate(45deg);
    -webkit-transform:rotate(45deg);
    -o-transform:rotate(45deg);
}
/*同意する（解約）*/
.confirm-dialog .button_login {
	display: block;
	width: 400px;
	font-size: 24px;
	font-weight:bold;
	text-align: center;
	padding: 15px;
	margin: 15px auto;
	/*ボタンカラー*/
	color: #fff !important;
	text-decoration: none;
	text-shadow: 0px 0px 0 rgba(0,0,0,0.3);
	border: 1px solid #bc0062;
	background: #ff2a98;
	background-image: -webkit-gradient(linear, left top, left bottom, from(#ff2a98), to(#bc0062));
	background-image: -webkit-linear-gradient(top, #ff2a98, #bc0062);
	background-image: -moz-linear-gradient(top, #ff2a98, #bc0062);
	background-image: linear-gradient(to bottom, #ff2a98, #bc0062);
	filter:progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#ff5db1, endColorstr=#ef007c);
}
.confirm-dialog .button_login:hover {
	color: #fff !important;
	background: #ff5db1;
	background-image: -webkit-gradient(linear, left top, left bottom, from(#ff5db1), to(#ef007c));
	background-image: -webkit-linear-gradient(top, #ff5db1, #ef007c);
	background-image: -moz-linear-gradient(top, #ff5db1, #ef007c);
	background-image: linear-gradient(to bottom, #ff5db1, #ef007c);
	filter:progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#ff2a98, endColorstr=#bc0062);
}
/*同意しない*/
.confirm-dialog .button_register {
	display: block;
	width: 400px;
	font-size: 24px;
	font-weight:bold;
	text-align: center;
	padding: 15px;
	margin: 15px auto;
	/*ボタンカラー*/
	color: #fff !important;
	text-decoration: none;
	text-shadow: 0px 0px 0 rgba(0,0,0,0.3);
	border: 1px solid #3b989d;
	background: #59d5db;
	background-image: -webkit-gradient(linear, left top, left bottom, from(#59d5db), to(#4db3b8));
	background-image: -webkit-linear-gradient(top, #59d5db, #4db3b8);
	background-image: -moz-linear-gradient(top, #59d5db, #4db3b8);
	background-image: linear-gradient(to bottom, #59d5db, #4db3b8);
	filter:progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#59d5db, endColorstr=#4db3b8);
}
.confirm-dialog .button_register:hover {
	color: #fff !important;
	background-image: -webkit-gradient(linear, left top, left bottom, from(#70e9ef), to(#57b7bd));
	background-image: -webkit-linear-gradient(top, #70e9ef, #57b7bd);
	background-image: -moz-linear-gradient(top, #70e9ef, #57b7bd);
	background-image: linear-gradient(to bottom, #70e9ef, #57b7bd);
	filter:progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#70e9ef, endColorstr=#57b7bd);
}