.flash-modal{
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 100%;
	z-index: 8888;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0);
    transition: background-color 0.3s ease;
}

.flash-modal-box {
    display: flex;
    flex-direction: column;
	width:400px;
	height:500px;
	background-color:rgba(0,0,0,0.9);
	border-radius:5px;
	color:#fff !important;
	margin:auto;
	z-index:8889;
	overflow:hidden;
	box-shadow:0px 0px 10px -1px rgba(0,0,0,0.6);
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.3s ease;
}

.flash-modal.active .flash-modal-box {
    transform: translateY(0);
    opacity: 1;
}

/* タイトル */
.flash-modal-title {
    flex: none;
	padding:5px 10px;
	text-align:center;
	font-weight:bold;
    color:#fff;
	background-color:#D71345;
}

/* メッセージ */
.flash-modal-message {
    flex-grow: 1;
	padding:10px;
}

/* ボタン */
.flash-modal-button {
    flex: none;
    text-align:center;
    width:100%;
    padding: 8px;
}
.flash-modal-button button{
    display:inline-block;
    border:none;
    padding:5px 15px;
    background-color:#D71345;
    color:#fff;
    border-radius:15px;
    width:80px;
    height:30px;
}