@charset "UTF-8";

/* ------------------------------------

intro-blc

--------------------------------------*/

#intro-blc02 .ttl-style-group {
  margin-bottom: 10px !important;
}

#intro-blc02 .ttl-style-group .ttl-heading {
  font-size: 120%;
}

/* ------------------------------------

intro-blc

--------------------------------------*/

#intro-blc01 .inner-blc {
  display: flex;
}

#intro-blc01 .inner-blc .left-blc {
  width: 50%;
  padding-right: 1rem;
  box-sizing: border-box;
}

#intro-blc01 .inner-blc .right-blc {
  width: 50%;
}

/* More css -------------------------------------- */

#intro-blc01 .inner-blc .left-blc {
  display: flex;
  align-items: center;
  font-size: 150%;
}

/* More css -------------------------------------- */

@media screen and (max-width:767px) {
  #intro-blc01 .inner-blc {
    flex-wrap: wrap;
  }

  #intro-blc01 .inner-blc .left-blc {
    width: 100%;
    padding-right: 0;
    font-size: 120%;
  }

  #intro-blc01 .inner-blc .right-blc {
    width: 100%;
    margin-top: 2rem;
  }
}

/* ------------------------------------

daily-schedule-blc

--------------------------------------*/

#daily-schedule-blc dl dt {
  color: var(--prominent-color);
  font-weight: bold;
  max-width: 120px;
  width: 100%;
}

#daily-schedule-blc dl {
  border-top: 1px solid #d9d9d9;
  display: flex;
  margin-top: 1rem;
  padding-top: 1rem;
  box-sizing: border-box;
}

#daily-schedule-blc dl dd {
  width: calc(100% - 120px);
}

#daily-schedule-blc dl:first-child {
  border-top: 0;
  padding-top: 0;
  margin-top: 0;
}

@media screen and (max-width:640px) {

  #daily-schedule-blc dl {
    flex-wrap: wrap;
  }

  #daily-schedule-blc dl dt {
    font-weight: bold;
    max-width: 100px;
  }

  #daily-schedule-blc dl dd {
    width: 100%;
  }
}