@charset "UTF-8";

/* ===================================================================== */
/* hero */
/* ===================================================================== */
#hero {
  width: 100%;
  height: 80vh;
  position: relative;
  top: 0;
  left: 0;
  padding-top: 60px;
}
#hero::before,
#hero::after {
  content: "";
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
}
#hero::before {
  background: url(../images/training_schedule_hero.jpg) no-repeat center center;
  background-size: cover;
}
#hero .container {
  align-items: center;
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.main-catch {
  position: absolute;
  transform: translateY(-12%);
  -webkit-transform: translateY(-12%);
  margin: auto;
}
.main-catch h1 {
  color: #fff;
  font-size: 7.2rem;
  font-weight: bold;
  line-height: 1.2;
  max-width: 733px;
  text-align: center;
}

@media only screen and (max-width: 1024px) {
  #hero::before {
    background-position: center right;
  }
  #hero::after {
    background-color: rgba(0, 0, 0, .5);
  }

  .main-catch {
    left: 0;
    padding: 0 1rem;
    width: 100%;
  }
  .main-catch h1 {
    color: #ffffff;
    font-size: 4.2rem;
    text-align: center;
  }
}

/* ===================================================================== */
/* schedule */
/* ===================================================================== */
#schedule {
  display: block;
  overflow: hidden;
  padding: 10rem 0;
  position: relative;
  z-index: 11;
}
#schedule .container {
  position: relative;
}
#schedule .article:not(:last-child) {
  margin-bottom: 8rem;
}

#schedule .table {
  font-size: 1.6rem;
}
#schedule .table th,
#schedule .table td {
  border: none;
}
#schedule .table th {
  padding: 1rem 1rem 4rem 0;
}
#schedule .table td {
  padding: 1rem 0 4rem 1rem;
}
#schedule .table tr:first-child th,
#schedule .table tr:first-child td {
  padding-top: 0;
}
#schedule .table tr:last-child th,
#schedule .table tr:last-child td {
  padding-bottom: 0;
}
#schedule .table_date {
  font-size: 3.2rem;
  text-align: right;
}
#schedule .table_date_small {
  display: block;
  font-size: 1.6rem;
}
#schedule .table_schedule {
  border-radius: .5rem;
  color: #fff;
  padding: 1rem;
}
#schedule .table_schedule:not(:last-child) {
  margin-bottom: 1rem;
}
#schedule .table_schedule.csm {
  background-color: #F6A11F;
}
#schedule .table_schedule.cspo {
  background-color: #DC4F29;
}
#schedule .table_schedule.less {
  background-color: #328DB8;
}
#schedule .table_schedule_date {
  display: block;
  font-size: 1.4rem;
  margin-bottom: .5rem;
}

@media only screen and (max-width: 768px) {
  #schedule .article {
    padding: 0 1rem;
  }
}

/* ===================================================================== */
/* common */
/* ===================================================================== */
.list li {
  margin: 0 0 .5rem;
  padding-left: 2.1rem;
  text-indent: -2.1rem;
}
.list li:last-child {
  margin: 0;
}

.list-note li {
  padding-left: 1.2rem;
  text-indent: -1.2rem;
}