
/* LINEバナー */
.line_bunner{
  width: 30vw;
  margin: 0 auto;
}

.line_bunner h4 {
  text-align: center;
  background-color: #d8f0f7;
  background-size: cover;
  padding: 10px;
}

.line_block {
text-align: center;
  padding: 20px 0;
}

.line_box p {
  font-weight: bold;
  font-size: 18px;
  text-align: center;
}

.line_box h5 {
  color: #e21111;
  font-size: 24px;
  text-align: center;
}

.line_box a {
  text-decoration: none;

}

.line_box .line_move {
  color: #fff;
  background-color: #00B900;
  padding: 15px 50px;
  margin: 10px ;
  font-size: 23px;
}

.line_move:hover {
}


/* LINE誘導バナー */

.line_btn {
  width: 70%;
  margin: 0 auto;
  animation-name:updown; 
  animation-delay:0s;   
  animation-duration: 1.8s;  
  animation-timing-function: ease-in-out;  
  animation-iteration-count: infinite; 
  background: none;
  transition: 0.5s;
  border: none;
  text-decoration: none;
}
.line_btn:hover{
  opacity: 0.4;
  transition: 0.5s;
}

.sp_n{
  display: block;
}
@keyframes updown {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
  100% {
    transform: translateY(0);
  }
}

@media screen and (max-width:768px) {
  .line_bunner {
      width: 80vw;
  }

  .line_block {
      display: block;

  }

  .line_block .line_url {
      text-align: center;
  }
  .line_btn{
      width: 95%;
  }

  .sp_n{
      display:flex;
    }
}

/* LINE誘導バナー */

.line_btn {
  width: 70%;
  margin: 0 auto;
  animation-name: updown;
  animation-delay: 0s;
  animation-duration: 1.8s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  background: none;
  transition: 0.5s;
  border: none;
  text-decoration: none;
}

.line_btn:hover {
  opacity: 0.4;
  transition: 0.5s;
}

.close{
  display: none;
}


@keyframes updown {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }

  100% {
    transform: translateY(0);
  }
}

@media screen and (max-width:768px) {
  .line_bunner {
    width: 80vw;

  }

  .line_block {
    display: block;

  }

  .line_block .line_url {
    text-align: center;
  }

  .line_btn {
    width: 95%;
  }

  .close{
    display:inline;
    z-index: 100;
    position: fixed;
    bottom: 10px;
    transition: opacity 2s, transform 1s;
  }
  .close:hover{
    opacity: 0.4;
    transition: 0.5s;
  }


}

/* LINE誘導バナー */


/* 受付部分 */

.day {
  width: 50%;
  margin: 0 auto;
  background-color: #0068c8;
  font-size: 1.2rem;
  color: #fff;
  padding: 20px 5%;
}

.day td {
  padding: 10px 0;
}

.yellow {
  color: #ffe600;
  font-weight: bold;
}

@media screen and (max-width:820px) {
  .day {
    width: 95%;
    font-size: 1rem;
    padding: 10px 5%;
  }
}

