@charset "utf-8";
select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}
select::-ms-expand {
	display: none;
}
select::-ms-value {
	color: currentColor;
}

#confirm-container .c-section {
	margin-bottom: 50px;
}
/*------------------------------
レイアウト系
--------------------------------*/
#confirm-container {
	width: 1104px;
	padding-top: 32px;
	padding-bottom: 96px;
	margin-left: auto;
	margin-right: auto;
}
.confirm-narrowInner {
	width: 800px;
	margin-left: auto;
	margin-right: auto;
}
/*------------------------------
タイトル、テキスト系
--------------------------------*/
.confirm-h1 {
	text-align: center;
	margin-bottom: 50px;
}

.confirm-h1 > *{
	display: inline-block;
	padding-bottom: 12px;
	border-bottom: 3px solid #212121;
	font-size: 3.6rem;
	font-weight: bold;
}

.confirm-big .confirm-h1 > *{
	border-bottom-color: #e80000;
}

.confirm-toto .confirm-h1 > *{
	border-bottom-color: #ffd800;
}
/*------------------------------
ボックス系
--------------------------------*/
.confirm-box {
	position: relative;
	border: 3px solid #dbdbdb;
	margin-bottom: 40px;
	padding: 43px 115px;
}

.confirm-box:before,
.confirm-box:after {
	content: '';
	display: block;
	position: absolute;
	width: 100%;
	height: 131px;
	left: 0;
	z-index: 0;
}

.confirm-box:before {
	background: url(/vote/confirm/p/img/bg-confirm-fbuki_pc_01.png) no-repeat left top, url(/vote/confirm/p/img/bg-confirm-fbuki_pc_02.png) no-repeat right top;
	background-size: contain;
	top: 0;
}

.confirm-box:after {
	background: url(/vote/confirm/p/img/bg-confirm-fbuki_pc_03.png) no-repeat left top, url(/vote/confirm/p/img/bg-confirm-fbuki_pc_04.png) no-repeat right top;
	background-size: contain;
	bottom: 0;
}

/*------------------------------
フォーム系
--------------------------------*/
.confirm-box > form {
	position: relative;
	z-index: 1;
}
.confirm-process + .confirm-process {
	margin-top: 32px;
}

.confirm-processTtl {
	font-weight: bold;
	font-size: 2rem;
	margin-bottom: 18px;
}

.confirm-select-row {
	display: flex;
	justify-content: space-between;
}

.confirm-select-row > .confirm-selectLabel {
	display: block;
	position: relative;
	width: 48%;
}

.confirm-selectLabel:before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	right: 15px;
	width: 10px;
	height: 10px;
	margin-top: auto;
	margin-bottom: auto;
	z-index: 1;
	border-left: 2px solid #212121;
	border-bottom: 2px solid #212121;
	transform: rotate(-45deg);
	pointer-events: none;
}

.confirm-select,
.confirm-input {
	border: 1px solid #dbdbdb;
	font-size: 1.4rem;
	background-color: #fff;
}

.confirm-select {
	width: 100%;
	padding: 18px 36px 18px 19px;
	font-size: 1.6rem;
}

.confirm-input {
	width: 30%;
	padding: 18px;
	font-size: 1.8rem;
}

.confirm-number-row {
	display: flex;
	align-items: center;
}

.confirm-number-row > .confirm-input {
	flex-grow: 1;
	font-weight: bold;
}

.confirm-hyphen {
	text-align: center;
	font-weight: bold;
	color: #999999;
	margin-left: 5px;
	margin-right: 5px;
	width: 1em;
}

/* 20200115 当せん確認キーボード操作修正 追記 */
select:focus, .confirm-input:focus, button:focus {
	border: 2px solid #9DCCE0;
}


/*------------------------------
ボタン系
--------------------------------*/
.confirm-btnWrap.c-column2-btn01 > *:last-child,
.confirm-btnWrap.c-column2-btn01 > *:nth-last-child(2){
	margin-bottom: 0;
}

.confirm-btn {
	margin-top: 36px;
}

.confirm-btn > * {
	background: #e80000;
	color: #fff;
	border: 1px solid #e80000;
	min-width: 322px;
	display: table;
	width: auto;
	padding: 17px 30px 17px 25px;
	font-size: 2rem;
	line-height: 2.6rem;
	position: relative;
	text-align: center;
	font-weight: bold;
}

.confirm-btn.confirm-btn-center > *{
	margin-left: auto;
	margin-right: auto;
}

.confirm-btn > *:hover{
	background: #fff;
	color: #e80000;
}

.confirm-btn > *:before {
	content: "";
	position: absolute;
	top: 50%;
	right: 12px;
	width: 8px;
	height: 15px;
	margin-top: -7px;
	background: url(/system/files/common/img/ico_arrowRight05.png) 0 0 no-repeat;
	background-size: contain;
}

.confirm-btn > *:hover:before{
	width: 8px;
	height: 14px;
	background: url(/system/files/common/img/ico_arrowRight01.png) 0 0 no-repeat;
	background-size: contain;
}

.confirm-btn.confirm-btn-back > * {
	min-width: 210px;
	background: #fff;
	color: #999;
	border: 1px solid #999999;
}

.confirm-btn.confirm-btn-back > *:hover{
	background: #212121;
	color: #fff;
}

.confirm-btn.confirm-btn-back > *:before {
	left: 12px;
	right: auto;
	background-image: url(/vote/confirm/p/img/ico_arrow_confirm.png);
}

.confirm-btn.confirm-btn-back > *:hover:before{
	-webkit-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	transform: rotate(180deg);
	background-image: url(/system/files/common/img/ico_arrowRight05.png);
}

#confirm-backBtn {
	display: none;
}

#confirm-backBtn.is-show {
	display: block;
}

/*------------------------------
エラーテキスト系
--------------------------------*/
.confirm-errorTxt {
	margin-top: 40px;
	font-size: 1.6rem;
	color: #e80000;
	font-weight: bold;
}

/*------------------------------
開催回情報エリア
--------------------------------*/
#confirm-areaHoldTimeInfo {
	display: none;
}

#confirm-areaHoldTimeInfo.is-show {
	display: block;
}

#confirm-holdTimeInfoWrap:after {
	content:"";
	display:table;
	clear:both;
	zoom:1;
}

#confirm-holdTimeInfoWrap > * {
	float: left;
}

#confirm-holdTimeInfoWrap #confirm-holdTimeLogo{
	width: 222px;
	margin-right: 20px;
}

#confirm-holdTimeInfoWrap #confirm-holdTimeInfoTable {
	width: 862px;
}

/*------------------------------
結果表示エリア
--------------------------------*/
#confirm-areaResult,
#confirm-areaBanner {
	display: none;
}

#confirm-areaResult.is-show,
#confirm-areaBanner.is-show {
	display: block;
}

/*------------------------------
テーブル共通スタイル
--------------------------------*/
.confirm-table {
	width: 100%;
	table-layout: fixed;
}

.confirm-table.is-multi-table {
	width: auto;
	min-width: 60%;
}

.confirm-table + .confirm-table {
	margin-top: 60px;
}

.confirm-table th,
.confirm-table td {
	padding: 14px 10px;
	text-align: center;
	vertical-align: middle;
	word-break: break-word;
}

.confirm-table th {
	font-weight: normal;
}


.confirm-table thead th {
	background-color: #212121;
	color: #fff;
	font-weight: bold;
}

.confirm-table thead th + th {
	border-left: 1px solid #fff;
}

.confirm-table td,
.confirm-table tbody th {
	border: 1px solid #dbdbdb;
}

/*------------------------------
結果表示テーブル
--------------------------------*/
.confirm-table .confirm-tableInfoHead:not(.confirm-tableInfoHeadResult) {
	width: 6.5em;
}

.confirm-table .confirm-tableInfoHead.confirm-tableInfoHeadResult {
	width: 4em;
}

#results-container .confirm-table td {
	font-size: 1.4rem;
}

.confirm-table.is-multi-table .confirm-voteCell {
	width: 83px;
}

/*試合結果セル
--------------------------------*/
.confirm-table .confirm-rowOdd .confirm-cellResult{
	background-color: #fef7f7;
}

.confirm-table .confirm-rowEven .confirm-cellResult{
	background-color: #fdeded;
}

/*投票結果セル
--------------------------------*/
.confirm-big .confirm-rowOdd .confirm-cellOdd{
	background-color: #e7f2f9;
}

.confirm-big .confirm-rowEven .confirm-cellOdd{
	background-color: #d4e9f7;
}

.confirm-big .confirm-rowEven .confirm-cellEven{
	background-color: #f5f5f5;
}

.confirm-toto .confirm-rowOdd .confirm-cellOdd{
	background-color: #e7f2f9;
}

.confirm-toto .confirm-rowEven .confirm-cellOdd{
	background-color: #d4e9f7;
}

.confirm-toto .confirm-rowOdd .confirm-cellEven{
	background-color: #ffffff;
}

.confirm-toto .confirm-rowEven .confirm-cellEven{
	background-color: #f5f5f5;
}

/*当たりはずれセル
--------------------------------*/
.confirm-big .confirm-table .confirm-cellHit {
	background-color: #e80000 !important;
	color: #fff !important;
}

.confirm-toto .confirm-table .confirm-cellHit {
	background-color: #ffd800 !important;
	color: #212121 !important;
}

.confirm-table .confirm-cellMiss .confirm-cellInn {
	display: block;
	position: relative;
	min-width: 1em;
	line-height: 1;
}

.confirm-table .confirm-cellMiss .confirm-cellInn:before {
	content: '';
	display: block;
	position: absolute;
	height: 2px;
	width: 1em;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	background-color: #e80000;
}

.confirm-cellAmounts.confirm-cellEven {
	background-color: #f5f5f5 !important;
}

/*試合情報セル（日付、チーム）
--------------------------------*/
.confirm-table .confirm-rowEven .confirm-cellInfo {
	background-color: #f5f5f5;
}


/*当たりの数、同一予想口数、小計合計
--------------------------------*/
.confirm-table .confirm-cellTtl {
	font-weight: bold;
	font-size: 1.6rem;
	text-align: right;
}

/*当たり等級テキスト
--------------------------------*/
.confirm-table .confirm-cellPrizeText {
	display: block;
	color: #e80000;
	font-weight: bold;
}

/*合計金額セル
--------------------------------*/
.confirm-table .confirm-rowPriceAmountRoW th,
.confirm-table .confirm-rowPriceAmountRoW td{
	font-weight: bold;
	text-align: right;
	background-color: #fdeded;
}

.confirm-table .confirm-cellPriceAmount {
	font-weight: normal !important;
}

.confirm-table .confirm-cellPriceAmount .confirm-cellPriceAmountNum {
	font-size: 1.8rem;
	margin-right: 5px;
}

/*------------------------------
等級カウントテーブル
--------------------------------*/
.confirm-prizeInfoTableHead {
	background-color: #212121;
	color: #fff;
}

.confirm-table .confirm-prizeInfoAmount {
	text-align: right;
	font-weight: bold;
	color: #e80000;
}

/*------------------------------
購入情報テーブル
--------------------------------*/
#confirm-prizeCountArea + #confirm-buyInfoTable {
	margin-top: 35px;
}

#confirm-prizeCountArea .confirm-table {
	margin-bottom: 20px;
}

#confirm-buyInfoTable.confirm-table th{
	background-color: #f5f5f5;
}

/*------------------------------
速報結果時表示文言
--------------------------------*/
#confirm-prizePromptText {
	display: none;
	margin-bottom: 38px;
}

#confirm-prizePromptText.is-show {
	display: block;
}

/*------------------------------
当たり、はずれ、おしいバナー
--------------------------------*/
.confirm-resultBanner {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 40px;
	height: 154px;
	text-align: center;
	font-size: 4rem;
	font-weight: bold;
	line-height: 1.4;
}

/*big*/
.confirm-big .confirm-resultBanner{
	background-color: #e80000;
	color: #fff;
	font-size: 3.4rem;
}

.confirm-big .confirm-resultBanner.is-win {
	font-size: 4rem;
	background: #e80000 url(/vote/confirm/p/img/bg_big_bnr_win.png) no-repeat center top;
}

/*toto*/
.confirm-toto .confirm-resultBanner{
	background-color: #ffd800;
	color: #212121;
}

.confirm-toto .confirm-resultBanner .confirm-resultBannerInner {
	display: inline-block;
	position: relative;
}

.confirm-toto .confirm-resultBanner .confirm-resultBannerInner:before {
	content: '';
	display: block;
	position: absolute;
	height: 154px;
	top: 0;
	bottom: 0;
	left: 0;
	margin-top: auto;
	margin-bottom: auto;
}

/*あたり*/
.confirm-toto .confirm-resultBanner.is-win {
	background: #ffd800 url(/vote/confirm/p/img/bg_toto_bnr_win.png) no-repeat center top;
}

.confirm-toto .confirm-resultBanner.is-win .confirm-resultBannerInner {
	padding-left: 169px;
}

.confirm-toto .confirm-resultBanner.is-win .confirm-resultBannerInner:before {
	width: 133px;
	background: url(/vote/confirm/p/img/ico_toto_bnr_win.png) no-repeat center/ contain;
}

/*はずれ*/
.confirm-toto .confirm-resultBanner.is-miss .confirm-resultBannerInner,
.confirm-toto .confirm-resultBanner.is-close .confirm-resultBannerInner {
	font-size: 3.4rem;
	padding-left: 127px;
}

.confirm-toto .confirm-resultBanner.is-miss .confirm-resultBannerInner:before,
.confirm-toto .confirm-resultBanner.is-close .confirm-resultBannerInner:before {
	width: 99px;
	background: url(/vote/confirm/p/img/ico_toto_bnr_miss.png) no-repeat center/ contain;
}

/*------------------------------
SSIバナー
--------------------------------*/
.confirm-bnrRow {
	overflow: hidden;
}

.confirm-bnrRow + .confirm-bnrRow {
	margin-top: 40px;
}

.confirm-bnrRow.confirm-bnrCol1 .confirm-bnrCol + .confirm-bnrCol {
	margin-top: 40px;
}

.confirm-bnrRow.confirm-bnrCol2 .confirm-bnrCol {
	width: 532px;
	float: left;
}

.confirm-bnrRow.confirm-bnrCol2 .confirm-bnrCol:nth-child(even) {
	margin-left: 39px;
}

.confirm-bnrRow.confirm-bnrCol2 .confirm-bnrCol:nth-child(n + 3) {
	margin-top: 40px;
}

/*------------------------------
くじ不成立時メッセージ くじ未発表時メッセージ
--------------------------------*/
.confirm-failMessage {
	text-align: center;
	margin-bottom: 50px;
}

.confirm-failMessageStrong {
	font-weight: bold;
	font-size: 1.8rem;
}