@charset "utf-8";
/*
**-- 共通CSS
*/
/*-- 基本設定 -----------------------------------------------*/
:root {
    --primary-color: #004ea2;
    --secondary-color: #ec6d81;
    --bg-gradient-start: #ebf4f3;
    --bg-gradient-end: #c9e3e6;
}

.primary-button {
    background-color: var(--primary-color);
    padding: 15px 30px;
    text-align: center;
    color: white;
}

.secondary-button {
    background-color: var(--secondary-color);
    padding: 15px 30px;
    text-align: center;
    color: white;
}

.SystemError {
	background-color:rgba(0, 0, 0, 0.4);
}
.SystemError > div {
	background-color:#ffffff;
	padding:10px;
	padding-bottom:15px;
	border-radius:5px;
	text-align:right;
}
.SystemError > div > h2 {
	font-size:18px;
	text-align:center;
	color:#c2a682;
	font-weight:normal;
	text-align:center;
	margin-bottom:15px;
}
.SystemError > div > ul {
	display:block;
	margin-bottom:10px;
	list-style-type:none;
	color:#da2629;
}
.SystemError > div > ul > li {
	padding:0 20px;
	line-height:1.5;
	text-align:center;
}
.SystemError > div > button:first-child {
	position:static;
	width:25px;
	height:25px;
	right:10px;
	top:10px;
	padding:0;
	font-size:14px;
	border:solid 1px #c2a682;
	background-color:#ffffff;
	border-radius:5px;
	color:#c2a583;
	text-align:center;
	cursor:pointer;
}
.SystemError > div > button:last-child {
	position:static;
	display:inline-block;
	width:100%;
	height:42px;
	padding:0;
	vertical-align:middle;
	border-radius:4px;
	white-space:nowrap;
	font-size:16px;
	cursor:pointer;
	font-family: "yu Mincho Medium", "游明朝Medium", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", serif;
	color:#ffffff;
	background-color:#17aeb6;
	border:solid 1px #17aeb6;
	box-shadow:3px 3px #64a39a;
}
