@charset "utf-8";
/* CSS Document */
.company-wrap .item {
   width:100%;
}
.company-wrap .item > p{
	width: 15%;
}
.company-wrap .item > h3{
	width: 85%;
	padding: 15px 0;
	padding-left: 80px;
}
.company-wrap .label{
    color: #016FD4;
    letter-spacing: 0.1em;
}
.lesson-table {
  margin: 0 auto;
}

.lesson-table .heading {
  text-align: center;
  color: #016FD4;
  letter-spacing: .08em;
  margin: 0 0 18px;
}

/* 行ボックス */
.lesson-table .rows {
  display: grid;
  gap: 5px;
}

.lesson-table .row {
  display: grid;
  grid-template-columns: 280px 1fr;
  border-radius: 4px;
  overflow: hidden;
        margin-right:initial;
    margin-left: initial;
}

/* 左列 */
.lesson-table .col.left {
  background: #00327B;
  color: #fff;
  padding: 18px 16px;
  line-height: 1.6;
}

/* 右列 */
.lesson-table .col.right {
  background: #f3f3f3;
  padding: 18px 20px;
  line-height: 1.9;
  letter-spacing: .02em;
    font-weight: 500;
}

/* 備考 */
.lesson-table .notes {
  margin: 14px 0 0;
  padding: 0 8px;
  color: #555;
  line-height: 1.9;
  font-size: 14px;
}

.lesson-table .notes p {
  position: relative;
  margin: 0 0 4px;
  padding-left: 1em; /* ※分の余白 */
}

.lesson-table .notes p::before {
  content: "※";
  position: absolute;
  left: 0;
  color: #555;
}



/* ---------- IEのみ ---------- */
@media all and (-ms-high-contrast: none) {
}
/* ---------- 1280px ~ ---------- */
@media screen and (max-width: 1280px){
}
/* ---------- 1080px ~ ---------- */
@media screen and (max-width: 1080px){
   .audition_wrap .audition_item .imgbox img{
  }
}
/* ---------- 768px ~ ---------- */
@media screen and (max-width: 768px){
  .lesson-table .rows {
width:100%;
}
      .lesson-table .row {
    grid-template-columns: 100%;
  }
  .lesson-table .col.left {
    border-bottom: 1px solid #d8d8d8;
  }
}
/* ---------- 576px ~ ---------- */
@media screen and (max-width: 576px){
 .company-wrap .item {
   flex-direction: column;
}
 .company-wrap .item > p{
	width: 100%;
}
.company-wrap .item > h3{
	width: 100%;
	padding-left: 0px;
}
}
/* ---------- 350px ~ ---------- */
@media screen and (max-width: 350px){
}

