@charset "UTF-8";

.seminar-outline {
  background-color: #F4F2EE;
  padding: 30px 20px;
  line-height: 2em;
}
.seminar-outline ol{
	counter-reset: listnum; /* カウンターをリセット */
	list-style: none; /* 標準のスタイルは消す */
}
.seminar-outline ol li::before{
	counter-increment: listnum; /* counter-resetと同じ文字列 */
	content: counter(listnum); /* カウントした数に応じて番号を表示 */
}
.seminar-outline .level-1 .level-1-item {
  font-size: 18px;
  font-weight: bold;
}
.seminar-outline .level-1 .level-1-item::before{
	counter-increment: listnum;
	content: counter(listnum) ".";
	padding-right: 10px;
	font-size: 18px;
	font-weight: 600;
}
.seminar-outline .outline-list .level-2 {
  padding-left: 1em;
}
.seminar-outline .outline-list .level-2 .level-2-item::before{
	counter-increment: listnum;
	content: counter(listnum) ".";
	padding-right: 10px;
}
.seminar-outline .outline-list .level-3 {
  padding-left: 1em;
}
.seminar-outline .outline-list .level-3 li::before{
	counter-increment: listnum;
	content: "(" counter(listnum) ")";
	padding-right: 10px;
}


  /*-------------------------------
  実績一覧
  ---------------------------------*/
.tab-list {
  display: flex;
  justify-content: center;
  padding: 0 20px;
  margin-bottom: 40px;
}
.tab-list li {
  width: 100%;
  max-width: 150px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-top: solid 1px #272625;
  border-left: solid 1px #272625;
  border-right: solid 1px #272625;
  cursor: pointer;
  font-size: 14px;
  margin-right: 10px;
  transition: all 0.3s ease;
}
.tab-list li:last-child {
  margin-right: 0;
}
.tab-list li:hover {
  background-color: #272625;
  color: #fff;
}
.tab-list li.active {
  background-color: #272625;
  color: #fff;
}

  /* --- table --- */
.work-list {
  display: none;
}
.work-list.active {
  display: block;
}

.work-table {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}
.work-table th,
.work-table td {
  padding: .5rem;
  border-bottom: 1px dotted #272625;
  border-right: 1px dotted #272625;
  vertical-align: middle;
}
.work-table th:last-child,
.work-table td:last-child {
  border-right: 0;
}
.work-table thead th {
  background-color: #F4F2EE;
  text-align: center;
}
.work-table tbody tr {
  border-bottom: 1px dotted #272625;
}
.work-table tbody tr:last-child {
  border: none;
}
.work-table tbody th {
  width: 25%;
  background-color: #F4F2EE;
}
.work-table tbody .work-date {
    width: 15%;
	border-left: none;
}
.work-table tbody .people {
  width: 10%;
  text-align: right;
}





/*-------------------------------------------
スマートフォン
-------------------------------------------*/
@media screen and (max-width: 767px) {

  .tab-list {
    margin-bottom: 30px;
  }
  .tab-list li {
    margin-right: 5px;
  }

  .work-table {
    max-width: 500px;
    width: 100%;
  }
  .work-table thead {
    display: none;
  }
  .work-table tbody tr {
    display: block;
	border-bottom: none;
		border-top: 1px solid #272625;
		padding-top: 0.5em;
		padding-bottom: 0.5em;
    /* margin-bottom: 1rem; */
  }
  .work-table tbody tr:last-child {
border-top: 1px solid #272625;
border-bottom: 1px solid #272625;
  }
  .work-table tbody th,
  .work-table tbody td {
	display: block;
	width: 100%;
	border-right: none;
	text-align: left;
	position: relative;
  }
  .work-table tbody th {
	background-color: #F4F2EE;
	font-weight: bold;
  }
  .work-table tbody td {
	border-bottom: 1px solid #272625;
  }
  
  .work-table tbody td::before {
	content: attr(data-label);
	font-weight: bold;
	position: absolute;
	left: 0;
  }
  
  .work-table tbody th:last-child,
  .work-table tbody td:last-child {
	border-bottom: none;
	border-right: none;
}
  .work-table tbody th {
    display: block;
    border-right: none;
    text-align: center;
  }
  .work-table tbody td {
	border-left: none;
	border-top: none;
    border-bottom: 2px solid #fff;
    display: block;
    text-align: right;
    position: relative;
    border-right: none;
  }
  .work-table tbody td::before {
    content: attr(data-label);
    font-weight: bold;
    position: absolute;
    left: 0;
  }
  .work-table td:last-child {
    border-bottom: 0;
  }
  
  .work-table tbody th,
  .work-table tbody .work-date {
    width: 100%;
  }
  .work-table tbody th,
  .work-table tbody .people {
    width: 100%;
  }
}


@media screen and (max-width: 430px) {
  .work-table tbody td::before {
    font-size: 0.8rem;
  }
  .work-table .text {
    font-size: 0.8rem;
  }
  .work-table .work-date {
    font-size: 0.8rem;
  }
  .work-table .people {
    font-size: 0.8rem;
  }
}