@charset "UTF-8";

#article-blc {
  padding-bottom: 0;
}

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

info-blc

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

#info-blc .ttl-style-group .ttl-heading {
  text-align: left;
  font-size: 120%;
}

#info-blc .ttl-style-group {
  margin-bottom: 0;
}

#info-blc .ttl-style-group .ttl-heading+.ttl-desc {
  margin-top: 10px;
  text-align: left;
}

#info-blc .inner dl>dt {
  font-size: 120%;
  color: var(--prominent-color);
  margin-bottom: 5px;
  padding-bottom: 5px;
  border-bottom: 1px solid #d9d9d9;
  font-weight: bold;
}

#info-blc .inner dl {
  margin-top: 2rem;
}

#info-blc .inner dl:first-child {
  margin-top: 0;
}

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

intro-blc

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

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

#intro-blc01 .inner-blc .left-blc {
  width: 50%;
  padding-right: 2rem;
  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%;
  }
}

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

inner-col3

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

.inner-col3 {
  display: flex;
  flex-wrap: wrap;
}

.inner-col3>li {
  width: calc((100% - 4rem) / 3);
  margin-right: 2rem;
  margin-top: 2rem;
}

.inner-col3>li .img-blc+.ttl {
  margin-top: 5px;
}

.inner-col3>li .ttl {
  font-weight: bold;
}

.inner-col3>li:nth-child(3n+3) {
  margin-right: 0;
}

.inner-col3>li:nth-child(-n+3) {
  margin-top: 0;
}

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

  .inner-col3>li {
    width: calc((100% - 1rem) / 2);
    margin-right: 1rem;
  }

  .inner-col3>li:nth-child(3n+3) {
    margin-right: 1rem;
  }

  .inner-col3>li:nth-child(-n+3) {
    margin-top: 2rem;
  }

  .inner-col3>li:nth-child(2n+2) {
    margin-right: 0;
  }

  .inner-col3>li:nth-child(-n+2) {
    margin-top: 0;
  }
}

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

  .inner-col3>li {
    width: 100%;
    margin-right: 0 !important;
    margin-top: 1.5rem !important;
  }

  .inner-col3>li:first-child {
    margin-top: 0 !important;
  }

  .inner-col3 {
    max-width: 400px;
    margin: auto;
  }

}