body {
  font-family: 'Noto Sans', sans-serif;
  letter-spacing: -0.025em;
}

.bg-atomyblue {
  background: #04a6e1;
}

#title {
  color: #303030;
  font-size: 40px;
  line-height: 1.4;
}

#description {
  font-size: 22px;
  color: #505050;
  line-height: 1.4;
  font-weight: 300;  
}

.schedule-wrapper {
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  padding-top: 40px;
  padding-bottom: 40px;
}

#schedule-title {
  font-size: 22px;
  color: #333;
  font-weight: 300;
  position: relative;
  padding-left: 12px;
  display: inline-block;
  margin-bottom: 26px;
}
#schedule-title::before {
  content: '';
  position: absolute;
  top: 50%;
  margin-top: -3px;
  left: 0;
  background-color: #04a6e1;
  width: 5px;
  height: 5px;
  border-radius: 50%;
}

#schedule ul > li {
  font-size: 26px;
  color: #333;
  font-weight: 400;
}

.btn-gohome {
  min-width: 370px;
  background: hsl(196, 97%, 45%);
  color: #fff;
  font-size: 24px;
  display: inline-block;
  padding: 10px;
  border-radius: 30px;
  transition: all .3s ease;
  padding-left: 15px;
  padding-right: 15px;
}

.btn-gohome.type2 {
  border: 3px solid hsl(196, 97%, 45%);
  background-color: #fff;
  color: hsl(196, 97%, 45%);
}

.btn-gohome:hover {
  background: hsl(196, 97%, calc(45% - 5%))
}

.btn-gohome.type2:hover {
  border-color: hsl(196, 97%, calc(45% - 5%));
  background-color: #fff;
}

@media(max-width: 767px) {
  .btn-gohome {
    min-width: inherit;
    width: 100%;
    font-size: 18px;
    padding-left: 0;
    padding-right: 0;
  }
}