/*タブ切り替え全体のスタイル*/
.tabs {

	padding-bottom: 40px;
	background-color: #fff;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
	width: 98%;
	margin: 0 auto 20px auto;
}

/*タブのスタイル*/
.tab_item {

	width: calc(100%/3);
	height: 50px;
	border-bottom: 3px solid #cccccc;
	color: #ffffff;
	background-color: #003fcd;
	line-height: 50px;
	font-size: 16px;
	text-align: center;
	display: block;
	float: left;
	text-align: center;
	font-weight: bold;
	transition: all 0.2s ease;
}

.tab_item:hover {
	opacity: 0.75;
}

/*ラジオボタンを全て消す*/
input[type="radio"] {
	display: none;
}

/*タブ切り替えの中身のスタイル*/
.tab_content {
	display: none;
	padding: 40px 40px 0;
	clear: both;
	overflow: hidden;
}


/*選択されているタブのコンテンツのみを表示*/
#chiba_going:checked ~ #chiba_going_content,
#tsukuba:checked ~ #tsukuba_content,
#chiba_return:checked ~ #chiba_return_content {
	display: block;
}

/*選択されているタブのスタイルを変える*/
.tabs input:checked + .tab_item {
	background-color: #198cff;
}

.modal-checkbox {
	display: none;
}

.modal {

	position: fixed;
	top: 0;
	left: 0;
	z-index: 1;
	display: none;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	background-color: rgb(0 0 0 / 60%);
}

.close {

	display: block;
	width: 100%;
	font-size: 0.24rem;
	text-align: right;
}

.modal-wrapper {

	position: relative;
	width: 80%;
	max-width: 80%;
	/*max-height: 70%;*/
	padding: 20px;
	margin: auto;
	overflow: scroll;
	background-color: #FEFEFE;
	border-radius: 5px;
}

.modal-checkbox:checked + .modal {
	display: flex;
}

.calc-monitor {

	background-color: #dcdcdc;
	font-size: 0.30rem;
	font-weight: bold;
	padding: 20px;
}

.btn {

	padding: 10px;
	font-size: 0.30rem;
	font-weight: bold;
	background-color: #333333;
	color: #ffffff;
	border-radius: 10px;
	cursor: pointer;
}

.btn-normal {
	width: 30%;
}

.btn-mini {
	width: 20%;
}

.btn-number {

	background-color: #333333;
	/*border-color: #ff0000;*/
}

.btn-kind {

	background-color: #bbbbbb;
	border-color: #bbbbbb;
	width: 45%;
}

.btn-clear {

	background-color: #ff0000;
	border-color: #ff0000;
}

.btn-confirm {

	width: 90%;
	font-size: 0.35rem;
	font-weight: bold;
	background-color: #0000ff;
}
