@charset "UTF-8";
/* ==========================================================================
   ボックス
   ========================================================================== */

.box {
	padding: 30px;
	border: 1px solid #dedede;
	border-radius: 0.25rem;
	background: #DCE6F2;
}

@media screen and (max-width: 1024px) {
	.box {
		padding: 10px;
	}
}

/*----------------------------------*/
/* タブボックス                     */
/*----------------------------------*/

.tab_box {
	font-size: var(--large-font-size);
}

.tab_box .tab {
	margin: 0px;
	padding: 5px 20px;
	width: 200px;
	font-size: var(--large-font-size);
	background: #C6D9F1;
	border-top-left-radius: 0.25rem;
	border-top-right-radius: 0.25rem;
}

.tab_box .tab p, .tab_box .tab ul {
	margin: 0px;
	padding: 0px;
}

.tab_box .box {
	padding: 20px;
	border-radius: 0 0.25rem 0.25rem 0.25rem;
}

.tab_box .box * {
	box-sizing: border-box;
}

.tab_box .box.close {
	display: none;
}

@media screen and (max-width: 1024px) {
	.tab_box .tab {
		padding: 5px 10px;
		width: 150px;
	}

	.tab_box .box {
		padding: 20px 10px;
	}
}

/*----------------------------------*/
/* 検索条件                         */
/*----------------------------------*/

.search_condition_title {
	font-size: var(--large-font-size);
	font-weight: bold;
	padding-left: 10px;
}

.search_condition_content {
	font-size: var(--large-font-size);
	padding-left: 70px;
	padding-right: 70px;
}

@media screen and (max-width: 1024px) {
	.search_condition_content {
		padding-left: 20px;
	}
}

.line, .line > div {
	width: 100%;
	line-height: 40px;
	display: flex;			/* 横並び   */
	flex-wrap : nowrap;		/* 改行不可 */
	align-items: center;	/*上下中央揃え*/
}

.line > *, .line > div > * {
	flex-shrink: 0;
}

.line > *:not(:last-child), .line > div > *:not(:last-child) {
	margin-right : 10px;
}

@media screen and (max-width: 1024px) {
	.line, .line > div {
		flex-wrap : wrap;		/* 改行可 */
	}
	.line > *:not(:last-child), .line > div > *:not(:last-child) {
		margin-right : 5px;
	}
}

/*----------------------------------*/
/* 札入れボックス                   */
/*----------------------------------*/

.wallet_box {
	padding: 10px;
	border: 1px solid #dedede;
	border-radius: 0.25rem;
	background: #f2f7fb;
}