

.todayDATE {
	  background-image: linear-gradient(90deg, #ffffff, #e9e9e9 50%, #ffffff);
	font-size: clamp(2rem, 2.4vw, 3rem);
	text-align: center;
	font-weight: 500;
	padding: 10px 0;
	margin-bottom: 20px;
}
.todayDATE span {
	font-size: clamp(1.5rem, 2vw, 2.4rem);
}


.dayweekLIST {
	display: flex;
	justify-content: space-between;
	margin: 10px 0 30px 0;
}

.dayweekLIST div {
	width: 13.5%;
	border-radius: 40px;
	background: #f195c7;
}
.dayweekLIST div.active {
 background: #1a1a1a;
  color: #FFF;
}

/* 019 */
.dayweekLIST div a {
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 10px 10px;
    color: #fff;
    transition: 0.3s ease-in-out;
    font-weight: 500;
	display: block;
	text-align: center;
	font-size: clamp(1.4rem, 1.4vw, 1.6rem);
}
.dayweekLIST div a:after {
  content: "";
  position: absolute;
  top: 50%;
  bottom: 0;
  right: 1rem;
  font-size: 90%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: right 0.3s;
  width: 6px;
  height: 6px;
  border-top: solid 2px currentColor;
  border-right: solid 2px currentColor;
  transform: translateY(-50%) rotate(45deg);
}

.dayweekLIST div a:hover {
  background: #1a1a1a;
	border-radius: 40px;
}


.dayweekLIST div a:hover:after {
  right: 0.7rem;
}

.sp-dayschedule {
	margin: 20px 0;
}





@media screen and (max-width: 834px) {
	
.todayDATE {
	  background-image: linear-gradient(90deg, #ffffff, #e9e9e9 50%, #ffffff);
	font-size: clamp(1.8rem, 2.4vw, 3rem);
	text-align: center;
	font-weight: 500;
	padding: 10px 0;
	margin-bottom: 10px;
}
.todayDATE span {
	font-size: clamp(1.5rem, 2vw, 2.4rem);
}
select {
	padding:10px;
	border: 1px solid #e0dfdf;
	font-size: clamp(1.7rem, 1.5vw, 1.8rem);
	width: 100%;
	box-sizing: border-box;
}


}