/* Y'S GEAR : shopassist.css */


.contentsWidth {
	font-weight: 500;
}
.contentsWidth *, 
.contentsWidth *::before,
.contentsWidth *::after {
	box-sizing: border-box;
}

@media screen and (min-width: 569px) {
	.sp { display: none; }
} /* */

@media screen and (max-width: 568px) {
	.pc { display: none; }
} /* */


/*======================================================================*
 *  [ PDFダウンロード ] 
 *======================================================================*/

.downloadList {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	font-size: 1.4rem;
}
.downloadList a {
	display: block;
	position: relative;
	width: calc(50% - 10px);
	border: 1px solid #ccc;
	margin: 10px 0;
	padding: 10px 38px 10px 10px;
}
/* .downloadList a:nth-child(even) { margin-left: 20px; } */
.downloadList a:hover,
.downloadList a:active { background: #EBEBF4; }
.downloadList a::after {
	position: absolute;
	top: calc(50% - 9px);
	right: 10px;
	width: 18px;
	height: 18px;
	background: #ccc;
	mask: url(/shared/svg/icon_download.svg) center center / contain no-repeat;
	content: "";
}
.downloadList a:hover::after,
.downloadList a:active::after { background: #666; }
.downloadList b {
	display: block;
	color: #000;
	font-size: 1.5rem;
}
.downloadList b span {
	display: inline-block;
	font-size: 1.3rem;
}
.downloadList ul {
	display: flex;
	flex-wrap: wrap;
	margin-top: 0.2em;
}
.downloadList ul li { margin: 0.3em 1.2em 0 0; }
.downloadList ul li:nth-child(1) {
	width: 100%;
	margin-right: 0;
}
.downloadList ul li span {
	display: inline-block;
	padding: 0 0.3em;
	margin-right: 0.5em;
	background: #efefef;
	font-size: 1.2rem;
	font-weight: bold;
}

@media screen and (max-width: 568px) {
	.downloadList { display: block; }
	.downloadList a {
		width: 100%;
		margin: 0;
	}
	/* .downloadList a:nth-child(even) { margin-left: 0; } */
	.downloadList a + a { margin-top: -1px; }
	.downloadList a:hover,
	.downloadList a:active { z-index: 5; }
} /* */


/*======================================================================*
 *  [ 検索フォーム ] 
 *======================================================================*/

.searchForm {
	margin-bottom: 10px;
	padding: 20px;
	border-radius: 10px;
	background: #efefef;
}
.searchForm input, 
.searchForm select {
	display: block;
	width: 100%;
	height: 30px;
	padding: 0 10px;
	margin-top: 5px;
	border: 1px solid #999;
	border-radius: 5px;
	background: #fff;
	color: #333;
	font-size: 1.6rem;
}
.searchForm ul {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.searchForm li {
	width: calc(50% - 10px);
	margin-bottom: 15px;
}

@media screen and (max-width: 568px) {
	.searchForm { padding: 15px; }
	.searchForm input, 
	.searchForm select { margin-top: 3px; }
	.searchForm li { margin-bottom: 10px; }
	.searchForm li:nth-child(3), 
	.searchForm li:nth-child(4) { width: 100%; }
} /* */

/* [ 検索ボタン ] */
.searchForm .btn {
	display: block;
	width: 100px;
	margin: 5px auto 0;
	padding: 5px 10px;
	border-radius: 5px;
	background: #363A90;
	color: #fff;
	font-size: 1.6rem;
	font-weight: bold;
	text-align: center;
	cursor: pointer;
}
.searchForm .btn:hover,
.searchForm .btn:active {
	color: #fff !important;
	opacity: 0.7;
}


/*======================================================================*
 *  [ 識別子テーブル ] 
 *======================================================================*/

.searchTableWrap { margin: 20px 0 50px; }

/* [ スワイプ ] */
.searchTableWrap .swipe { display: none; }

/* [ テーブル ] */
.searchTable .commonTable {
	width: 100% !important;
	margin: 0;
}
.searchTable .commonTable th {
	padding: 10px;
	font-size: 1.3rem;
	line-height: 1.1 !important;
	white-space: nowrap;
}
.searchTable .commonTable td {
	text-align: center;
	vertical-align: middle;
}
.searchTable .commonTable tbody td:nth-child(1) { white-space: nowrap; }
.searchTable .commonTable tbody td:nth-child(3) { white-space: nowrap; }
.searchTable .commonTable tbody td:nth-child(4) { text-align: left; }
/* .searchTable .commonTable tbody td:nth-child(5) { text-align: right; } */

@media screen and (max-width: 980px) {
	/* [ スワイプ ] */
	.searchTableWrap .swipe { display: block; }
	.searchTableWrap .swipe:first-child { margin-bottom: 10px; }
	.searchTableWrap .swipe:last-child { margin-top: 10px; }
	.searchTableWrap .swipe b {
		display: inline-block;
		padding: 5px 10px;
		border-radius: 5px;
		background: #EBEBF4;
		color: #363A90;
	}

	/* [ テーブル ] */
	.searchTable { overflow-x: scroll; }
	.searchTable .commonTable { width: 730px !important; }
} /* */

