@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@700&family=Noto+Sans+JP:wght@400;700&display=swap');

// --------------------------
// content
// --------------------------

// ab_test
.ab_test_h1 {
	margin: 20px 0 24px;
	line-height: 1;
}
.ab_test {
	font-family: 'Noto Sans JP';
	p, ul, li {
		margin: 0;
		padding: 0;
	}
	a,
	a:active,
	a:focus {
		outline: none !important;
	}

.ab_select_list {
	margin: 0 20px 24px 0;
	display: flex;
	justify-content: space-between;
	@media screen and (max-width: 782px) {
		display: block;
	} // 782px
	li {
		width: calc(100% / 3 - 16px);
		@media screen and (max-width: 782px) {
			width: 100%;
			margin-bottom: 8px;
		} // 782px
		&:last-child {
			.ab_select {
				select {
					font-size: 16px;
					@media screen and (max-width: 782px) {
						font-size: 14px;
					} // 782px			
				}
			}
		}
	}
}

.ab_select {
	width: 100%;
	height: 70px;
	background: #fff;
	border-radius: 5px;
	position: relative;
	z-index: 1;
	@media screen and (max-width: 782px) {
		height: 50px;
	} // 782px
	&:after {
		content: '';
		width: 8px;
		height: 8px;
		border: 0;
		border-bottom: solid 2px #7A86A1;
		border-right: solid 2px #7A86A1;
		transform: rotate(45deg);
		position: absolute;
		top: 0;
		right: 27px;
		bottom: 0;
		margin: auto;
		@media screen and (max-width: 782px) {
			width: 5px;
			height: 5px;
			right: 12px;
		} // 782px
	}
	&::-ms-expand {
		display: none;
	}
	.ab_select_title {
		color: #7A86A1;
		font-size: 14px;
		position: absolute;
		left: 24px;
		top: 12px;
		@media screen and (max-width: 782px) {
			top: 8px;
			left: 12px;
			font-size: 12px;
		} // 782px
	}
	select {
		max-width: inherit;
		width: 100%;
		height: 100%;
		background: #f4f4f4;
		color: #000;
		display: block;
		appearance: none;
		-webkit-appearance: none;
		-moz-appearance: none;
		background: transparent;
		text-indent: 0.01px;
		padding: 15px 45px 0 24px;
		border: none;
		border-radius: 3px;
		font-family: "Roboto";
		font-size: 18px;
		font-weight: 700;
		position: relative;
		z-index: 4;
		@media screen and (max-width: 782px) {
			padding: 18px 25px 0 12px;
			font-size: 16px;
		} // 782px
	}
	select::-ms-expand {
		display: none;
	}
}

// ab_monitor
.monitor_wrap {
	width: calc(100% - 20px);
	margin-left: -20px;
	padding: 0 20px 35px;
	background: #fff;
	overflow: hidden;
	position: relative;
	&::before {
		width: calc(100% + 40px);
		margin-left: -20px;
		height: 25px;
		background: #f0f0f1;
		content: "";
		position: absolute;
		left: 0;
		top: 0;
	}
}
.monitor {
	width: 100%;
	margin-bottom: 36px;
	box-shadow: 0px 7px 29px 1px rgba($color: #695F97, $alpha: 0.16);
	display: flex;
	position: relative;
	z-index: 1;
	li {
		width: 100%;
		height: 50px;
		background: #fff;
		color: #7A86A1;
		cursor: pointer;
		display: flex;
		align-items: center;
		justify-content: center;
		font-weight: 700;
		text-decoration: none;
		img {
			margin-right: 10px;
		}
		&:first-child {
			border-radius: 5px 0 0 5px;
		}
		&:last-child {
			border-radius: 0 5px 5px 0;
		}
		&.on {
			background: #2271B1;
			color: #fff;
		}
	}
}
.monitor_box {
	display: flex;
	justify-content: space-between;
	position: relative;
	z-index: 1;
	@media screen and (max-width: 1024px) {
		display: block;
	} // 1024px
	.monitor_title {
		height: 32px;
		margin-bottom: 16px;
		display: flex;
		align-items: center;
		justify-content: center;
		font-size: 16px;
		font-weight: 700;
		p {
			display: flex;
			align-items: center;
			justify-content: center;
		}
		img {
			margin-right: 8px;
		}
	}
	.monitor_inner {
		padding: 24px;
		border-radius: 30px;
		display: flex;
		align-items: center;
		justify-content: center;
		@media screen and (max-width: 782px) {
			padding: 24px 16px;
		} // 782px
	}
}
.monitor_off {
	width: calc(50% - 16px);
	@media screen and (max-width: 1024px) {
		width: 100%;
		margin-bottom: 48px;
	} // 1024px
	.monitor_inner {
		background: #D9D9D9;
	}
}
.monitor_on {
	width: calc(50% - 16px);
	@media screen and (max-width: 1024px) {
		width: 100%;
	} // 1024px
	.monitor_title {
		justify-content: flex-end;
		@media screen and (max-width: 1024px) {
			margin-bottom: 32px;
			justify-content: center;
			flex-direction: column;
		} // 1024px
		p {
			@media screen and (max-width: 1024px) {
				margin-bottom: 8px;
			} // 1024px	
		}
	}
	.monitor_inner {
		background: #C8DDEF;
	}
}
.monitor_select {
	width: 202px;
	height: 32px;
	margin-left: 16px;
	background: #D9D9D9;
	border-radius: 5px;
	position: relative;
	z-index: 1;
	@media screen and (max-width: 782px) {
	} // 782px
	&:after {
		content: '';
		width: 8px;
		height: 8px;
		border: 0;
		border-bottom: solid 2px #7A86A1;
		border-right: solid 2px #7A86A1;
		transform: rotate(45deg);
		position: absolute;
		top: -2px;
		right: 16px;
		bottom: 0;
		margin: auto;
		@media screen and (max-width: 782px) {
			width: 5px;
			height: 5px;
			right: 12px;
		} // 782px
	}
	&::-ms-expand {
		display: none;
	}
	select {
		max-width: inherit;
		width: 100%;
		height: 100%;
		background: none;
		color: #000;
		display: block;
		appearance: none;
		-webkit-appearance: none;
		-moz-appearance: none;
		background: transparent;
		text-indent: 0.01px;
		padding: 0 45px 0 15px;
		border: none;
		border-radius: 3px;
		font-size: 16px;
		font-weight: 700;
		position: relative;
		z-index: 4;
		@media screen and (max-width: 782px) {
		} // 782px
	}
	select::-ms-expand {
		display: none;
	}
}

// table_wrap
.table_wrap {
	margin-bottom: 30px;
	padding-right: 20px;
	position: relative;
	&::before {
		width: calc(100% + 20px);
		margin-left: -20px;
		height: 25px;
		background: #fff;
		content: "";
		position: absolute;
		left: 0;
		top: 0;
	}
	.table_scroll {
		@media screen and (max-width: 782px) {
			overflow: scroll;
		} // 782px
	}
}
.table {
	width: 100%;
	border-collapse: collapse;
	font-family: 'Roboto';
	font-size: 16px;
	font-weight: 700;
	position: relative;
	z-index: 1;
	@media screen and (max-width: 782px) {
		min-width: 756px;
	} // 782px
	.red {
		color: #D64848;
	}
	.green {
		color: #46A478;
	}
	tr {
		&:first-of-type {
			th {
				&:nth-child(1) {
					width: 100px;
					border-radius: 5px 0 0 0;
				}
				&:nth-child(2),
				&:nth-child(3) {
					width: calc(50% - 50px);
				}
				&:nth-child(2) {
					background: #8B8B8B;
				}
				&:nth-child(3) {
					background: #2271B1;
					border-radius: 0 5px 0 0;
				}
			}
		}
		&:nth-child(2) {
			font-family: 'Noto Sans JP';
			font-size: 14px;
			font-weight: 700;
			img {
				margin-right: 5px;
				vertical-align: middle;
			}
		}
		&:last-of-type {
			th {
				border-bottom: none;
				border-radius: 0 0 0 5px;
			}
			td {
				border-bottom: none;
				&:last-child {
					border-radius: 0 0 5px 0;
				}
			}
		}
	}
	th {
		padding: 12px 24px;
		color: #fff;
		white-space: nowrap;
		&:first-child {
			background: #1D2327;
			border-bottom: 1px solid #fff;
			color: #fff;
			font-size: 14px;
		}
	}
	td {
		width: 25%;
		background: #fff;
		border: 1px solid #C2C2C2;
		text-align: center;
		&:last-child {
			border-right: none;
		}
	}
}

//graph
.graph {
	padding-right: 20px;
	.graph_head {
		display: flex;
		align-items: center;
		flex-wrap: wrap;
	}
	.graph_title {
		margin: 0 12px 8px 0;
	}
	.graph_date {
		margin-bottom: 8px;
		font-family: "Roboto";
		font-size: 18px;
		font-weight: 700;
		line-height: 1.2;
	}
	.graph_box {
		padding: 24px;
		background: #fff;
		border-radius: 5px;
	}
}


} //ab_test