@charset "UTF-8";

/* リスト */
.c-list {
	list-style: none;
	padding: 0;
}

.c-list li {
	position: relative;
	padding-left: 1em;
	margin-bottom: 0.25em;
}

.c-list.is-dot li::before {
  content: "";
  position: absolute;
  top: 0.75em;
  left: 2px;
  display: block;
  background-color: #00acbc;
  border-radius: 50%;
  width: 5px;
  height: 5px;
}


/* 見出し */
.c-heading {
	margin-top: 1.125rem;
	margin-bottom: 0.375rem;
	font-size: 1.125rem;
	font-weight: 700;
	line-height: 1.4;
}
@media (min-width: 768px) {
	.c-heading {
		font-size: 1rem;
	}
}
.c-heading.is-sm {
	margin-top: 0.75rem;
	font-size: 1rem;
}
@media (min-width: 768px) {
	.c-heading.is-sm {
		font-size: 0.875rem;
	}
}
.c-heading.is-lg {
	margin-top: 1.5rem;
	font-size: 1.25rem;
}
@media (min-width: 768px) {
	.c-heading.is-lg {
		font-size: 1.125rem;
	}
}
.c-heading .c-heading--inline-note {
	margin-left: 1em;
	font-size: 0.85em;
	font-weight: 400;
}


/* 上付き文字 */
.c-sup {
	vertical-align: baseline; 
	position: relative;
	top: -0.4em;
	font-size: 0.75em;
	line-height: 0;
	margin-left: 0.1em;
}

/* テーブル */
.c-table {
	table-layout: fixed;
	border-collapse: collapse;
	width: 100%;
}

.c-table.is-bordered th,
.c-table.is-bordered td {
	border: 1px solid #b1b1b1;
}

.c-table.is-fixed {
	table-layout: fixed;
}

.c-table--timetable th {
	background-color: #f9f9f9;
	font-size: 0.75rem;
}
@media (min-width: 768px) {
	.c-table--timetable th {
		font-size: 0.875rem;
	}
}

.c-table--timetable td {
	text-align: center;
}


/* ボックス */
.c-box {
	border: 1px solid rgba(0, 0, 0, 0.5);
	margin: 1rem 0;
	padding: 10px 15px;
}
@media (min-width: 768px) {
	.c-box {
		padding: 15px 20px;
	}
}

.c-box.is-bd-color {
	border-color: #00acbc;
}

