@CHARSET "UTF-8";
/**
Throws SPAM Away
Option page
*/

h2 {
	padding: 10px !important;
}

.wrap h3 {
	background: #fff;
	border-left: 3px solid orange;
	margin: 0 0 15px 15px;
	padding: 5px 10px;
}

.wrap p {
	margin: 0 0 15px 15px;
	padding: 5px 10px;
}

.wrap table.form-table {
	margin: 0 0 15px 15px;
	padding: 5px 10px;
	border-collapse: separate;
	border-spacing: 5px;
}

.wrap table.form-table tbody tr th {
	background: #fff;
	width: 250px;
	margin: 0 0 15px 15px;
	padding: 5px 10px;
	border: solid 1px #ddd;
	border-radius: 3px;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
	overflow: hidden;
}

table.form-table > tbody > tr > td {
	background: #fff;
	margin: 0 0 15px 15px;
	border: solid 1px #ddd;
	border-radius: 3px;
	box-shadow: 0 1px 3px rgb(0 0 0 / 10%);
	overflow: hidden;
}

.tsa_memo {
	width: 80%;
}

.updated#message {
	padding: 10px;
	width: 50%;
}

/**
 * Checkbox Toggle UI
 */
input[type="checkbox"].wppd-ui-toggle {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;

	-webkit-tap-highlight-color: transparent;

	width: auto;
	height: auto;
	vertical-align: middle;
	position: relative;
	border: 0;
	outline: 0;
	cursor: pointer;
	margin: 0 4px;
	background: none;
	box-shadow: none;
}

input[type="checkbox"].wppd-ui-toggle:focus {
	box-shadow: none;
}

input[type="checkbox"].wppd-ui-toggle:after {
	content: '';
	font-size: 8px;
	font-weight: 400;
	line-height: 18px;
	text-indent: -14px;
	color: #ffffff;
	width: 36px;
	height: 18px;
	display: inline-block;
	background-color: #a7aaad;
	border-radius: 72px;
	box-shadow: 0 0 12px rgb(0 0 0 / 15%) inset;
}

input[type="checkbox"].wppd-ui-toggle:before {
	content: '';
	width: 14px;
	height: 14px;
	display: block;
	position: absolute;
	top: 2px;
	left: 2px;
	margin: 0;
	border-radius: 50%;
	background-color: #ffffff;
}

input[type="checkbox"].wppd-ui-toggle:checked:before {
	left: 20px;
	margin: 0;
	background-color: #ffffff;
}

input[type="checkbox"].wppd-ui-toggle,
input[type="checkbox"].wppd-ui-toggle:before,
input[type="checkbox"].wppd-ui-toggle:after,
input[type="checkbox"].wppd-ui-toggle:checked:before,
input[type="checkbox"].wppd-ui-toggle:checked:after {
	transition: ease .15s;
}

input[type="checkbox"].wppd-ui-toggle:checked:after {
	content: 'ON';
	background-color: #2271b1;
}

input[type=radio] {
	display: none; /* ラジオボタンを非表示にする */
}

input[type="radio"]:checked + label {
	background: #2271b1; /* マウス選択時の背景色を指定する */
	color: #ffffff; /* マウス選択時のフォント色を指定する */
}

.label:hover {
	background-color: #E2EDF9; /* マウスオーバー時の背景色を指定する */
}

.label {
	display: block; /* ブロックレベル要素化する */
	float: left; /* 要素の左寄せ・回り込を指定する */
	margin: 3px; /* ボックス外側の余白を指定する */
	width: 100px; /* ボックスの横幅を指定する */
	height: 30px; /* ボックスの高さを指定する */
	padding-left: 5px; /* ボックス内左側の余白を指定する */
	padding-right: 5px; /* ボックス内御右側の余白を指定する */
	color: #b20000; /* フォントの色を指定 */
	text-align: center; /* テキストのセンタリングを指定する */
	line-height: 30px; /* 行の高さを指定する */
	cursor: pointer; /* マウスカーソルの形（リンクカーソル）を指定する */
	border: 2px solid #2271b1; /* ボックスの境界線を実線で指定する */
	border-radius: 5px; /* 角丸を指定する */
}

.label_long {
	display: block; /* ブロックレベル要素化する */
	float: left; /* 要素の左寄せ・回り込を指定する */
	margin: 3px; /* ボックス外側の余白を指定する */
	width: 150px; /* ボックスの横幅を指定する */
	height: 45px; /* ボックスの高さを指定する */
	padding-left: 5px; /* ボックス内左側の余白を指定する */
	padding-right: 5px; /* ボックス内御右側の余白を指定する */
	color: #b20000; /* フォントの色を指定 */
	text-align: center; /* テキストのセンタリングを指定する */
	line-height: 25px; /* 行の高さを指定する */
	cursor: pointer; /* マウスカーソルの形（リンクカーソル）を指定する */
	border: 2px solid #2271b1; /* ボックスの境界線を実線で指定する */
	border-radius: 5px; /* 角丸を指定する */
}