.tab-menu
{
		display: grid;
		grid-template-columns: repeat(6, 1fr);
		border: 1px solid #aaa;
}

.tab
{
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 10px 6px;
	background: #f9f9f9;
	border-right: 1px solid #aaa;
	border-bottom: 1px solid #aaa;
	font-size: 14px;
	cursor: pointer;
	text-decoration: none;
	color: inherit;
}

.tab:last-child
{
	border-right: none;
}

.tab.active
{
	background: #333;
	color: #fff;
	font-weight: bold;
}

.tab-contents
{
	margin-top: 20px;
}

.tab-content
{
	display: none;
	padding: 16px;
	border: 1px solid #ddd;
}

.tab-content.active
{
	display: block;
}

.section-box
{
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
	max-width: 900px;
	margin: 20px auto;
}

.text-area
{
	font-size: 20px;
	font-weight: 700;
	line-height: 1.3;
}

.number
{
	font-size: 60px;
	font-weight: 800;
	color: rgba(0, 150, 255, 0.12);
	line-height: 1;
}

.guide_contents
{
	margin: 5px 10px 0px 10px;
}

.contents_title
{
	font-size: 22px;
	font-weight: 700;
}

.contents_title_sub
{
	font-size: 16px;
	font-weight: bold;
}

.guide-wrap
{
	display: flex;
	gap: 12px;
}

.guide-table
{
	border-collapse: collapse;
}

.guide-table th,.guide-table td
{
	border: 1px solid #ccc;
	padding: 8px;
}

.table-head th
{
	padding: 5px 8px 5px 8px;
	line-height: 1.1;
	text-align: center;
	vertical-align: middle;
	background-color: #f5f6f7;
}

#pageTopBtn
{
	display: none;
	position: fixed;
	right: 20px;
	bottom: 20%;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	border: 1px solid #000;
	background: #fff;
	color: #000;
	z-index: 9999;
	transition: bottom 0.2s;
}

#pageTopBtn:hover
{
	background: #000;
	color: #fff;
	transform: translateY(-2px);
}

@media (max-width: 768px)
{
	#pageTopBtn
	{
		right: 14px;
		bottom: 14px;
		width: 42px;
		height: 42px;
		font-size: 16px;
	}

	.guide-wrap
	{
		flex-direction: column;
	}

	.tab-menu
	{
		grid-template-columns: repeat(2, 1fr);
	}
}

.guide-steps {
  padding-left: 1.2em;
  line-height: 1.7;
}

.guide-steps li {

  padding-bottom: 28px;
  border-bottom: 1px solid transparent;
}

.guide-note {
  display: block;
  margin-top: 6px;
  color: #555;
  font-size: 0.9em;
}


.notice-list {
  padding-left: 1.2em;
  margin-left: 0;
  margin-bottom: 10px;
}
