@charset "UTF-8";

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

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%;
}

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

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

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

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

facility-blc

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

#facility-blc .inner .ttl+.img-blc {
  margin-top: 10px;
}

#facility-blc .inner .ttl {
  font-weight: bold;
}

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

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;
  }

}

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

daily-schedule-blc

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

#daily-schedule-blc dl dt {
  color: var(--secondary-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%;
  }
}

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

slide-slick-center

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

#events-blc .inner-list {
  display: flex;
  flex-wrap: wrap;
}

#events-blc .inner-list>li {
  width: calc((100% - 1rem) / 2);
  margin-right: 1rem;
  margin-top: 1rem;
  background-color: #fff;
  padding: 1rem 2rem;
  box-sizing: border-box;
  position: relative;
  display: flex;
  align-items: center;
}

#events-blc .inner-list>li:nth-child(2n+2) {
  margin-right: 0;
}

#events-blc .inner-list>li:nth-child(-n+2) {
  margin-top: 0;
}

#events-blc .inner-list>li .bage {
  width: 60px;
  height: 60px;
  box-sizing: border-box;
  border-radius: 999px;
  background-color: var(--secondary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 120%;
  color: #fff;
  font-weight: bold;
}

#events-blc .inner-list>li .txt {
  width: calc(100% - 60px);
  padding-left: 25px;
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
}

#events-blc .inner-list>li .txt .li {
  width: calc((100% - 10px) / 2);
  margin-right: 10px;
  position: relative;
  padding-left: 10px;
  box-sizing: border-box;
}

#events-blc .inner-list>li .txt .li:nth-child(2n+2) {
  margin-right: 0;
}

#events-blc .inner-list>li .txt .li::before {
  content: "";
  background-color: var(--secondary-color);
  width: 5px;
  height: 5px;
  position: absolute;
  top: 10px;
  left: 0;
  border-radius: 999px;
}

@media screen and (max-width:1000px) {
  #events-blc .inner-list>li {
    flex-wrap: wrap;
    padding: 2rem 2rem;
  }


  #events-blc .inner-list>li .txt {
    width: 100%;
    padding-left: 0;
    margin-top: 1rem;
  }
}

@media screen and (max-width:640px) {
  #events-blc .inner-list>li {
    width: 100%;
    margin-right: 0 !important;
    margin-top: 1rem !important;
  }

  #events-blc .inner-list>li:first-child {
    margin-top: 0 !important;
  }
}