.day-select{
  position: relative;
  display: flex;
  
  gap: 5px;
}
.day-select:has(.err0){
  padding-bottom: 1.5em;
}
.day-select .err0{
  position: absolute;
  bottom: -0.2em;
  left: 0;
}
#form-wrap td ul{
  display: flex;
  gap: 20px;
}
#form-wrap td ul li{
  display: flex;
  gap: 10px;
}
#form-wrap .error{
  color: #f00;
}
#form-wrap input.day.error{
  color: #000;
}
#form-wrap input[type='email'] {
  border: 1px solid rgb(220, 220, 220);
  width: 100%;
  box-sizing: border-box;
  padding: 10px;
}
#form-wrap th.required span{
  display:inline-block;
  position: relative;
  padding-right: 1.5em;
}
#form-wrap th.required span:after{
  content: '※';
  position: absolute;
  top: 0;
  right: 0;
}
.agree label{
  position: relative;
  display: flex;
  justify-content: center;
  gap: 10px;
}
.agree .err0{
  position: absolute;
  bottom: -1.5em;
  left: 50%;
  transform: translateX(-50%);
}
.btn-confirm{
  text-align: center;
  margin-top: 50px;
}
.btn-confirm button{
  background-color: rgb(143, 195, 31);
  border: none;
  color: #ffff;
  width: 300px;
  height: 60px;
  line-height: 60px;
  cursor: pointer;
  transition: 0.5s all;
}
.btn-confirm button:hover{
  background-color: #fff;
  border: 1px solid rgb(143, 195, 31);
  color: rgb(143, 195, 31);
}
@media (max-width: 768px) {
  .day-select{
    display: block;
  }
  #form-wrap input.day {
    display: block;
    width: 60%;
    margin-bottom: 10px;
  }
  .day-select select{
    width: calc(50% - 2em);
  }
  .day-select select:nth-of-type(2){
    margin-left: 1em;
  }
}

#confirm #form-wrap h3{
  text-align: center;
  font-size: 32px;
  margin-bottom: 40px;
  color: rgb(143, 195, 31);
}
#confirm #form-wrap h3 + p{
  margin-bottom: 60px;
  font-size: 18px;
}
#confirm #form-wrap input[type='submit'],#confirm #form-wrap input[type='button']{
  background-color: rgb(143, 195, 31);
  border: none;
  color: #ffff;
  width: 300px;
  height: 60px;
  line-height: 60px;
  cursor: pointer;
  transition: 0.5s all;
}
#confirm #form-wrap input[type='button']{
   background-color: #626262;
   margin-left: 20px;
}
#confirm #form-wrap input[type='submit']:hover{
  background-color: #fff;
  border: 1px solid rgb(143, 195, 31);
  color: rgb(143, 195, 31);
}
#confirm #form-wrap input[type='button']:hover{
   background-color: #fff;
  border: 1px solid #626262;
  color: #626262;
}
@media (max-width: 768px) {
  #confirm #form-wrap h3{
    font-size: 26px;
    margin-bottom: 20px;
  }
  #confirm #form-wrap h3 + p{
    margin-bottom: 30px;
    font-size: 16px;
  }
  #confirm #form-wrap h3 + p strong{display: block;}
  #confirm #form-wrap input[type='button']{
    background-color: #626262;
    margin-left: 0px;
    margin-top: 10px;
  }
}


#thanks{
  margin-bottom: -50px;
}
#thanks .thanks-wrap + a{ opacity: 0; position: relative; z-index: -1;}
#thanks .thanks-wrap p{
  font-size: 32px;
  font-weight: 700;
}

@media (max-width: 768px) {
  #thanks .thanks-wrap p{
    font-size: 26px;
  }
}

#blog-contents{
  margin-bottom: 60px;
}
#blog-contents p{
  margin-bottom: 20px;
}
#blog-contents figure{
  margin-bottom: 20px;
}