.separate-top {
    position: relative;
    width: 100%;
    height: 300px;
}
.separate-top h2 {
    position: absolute;/*重ねたい子要素にabsolute*/
    top:70%;
    left: 50%;
   -ms-transform: translate(-50%,-50%);/*ベンダープレフィックス*/
    -webkit-transform: translate(-50%,-50%);/*ベンダープレフィックス*/
    transform: translate(-50%,-50%);/*センター寄せの修正*/
    color: #000000;
    font-size: 5rem;
    margin: 0!important;/*文字がずれている場合や*/
    padding: 0!important;/*文字が折り返される場合*/
}
.contact-item02 {
  margin: 0 4px; /* マージンを一律に */
  background: rgb(0, 0, 0);
  color: #000;
  width: 75px;
  height: 30px;
  border: #fff solid 4px;
  border-radius: 0 0 20px 0;
  text-align: center;
}
.contact-item02 a {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
  font-size: 0.8rem; /* フォントサイズを調整 */
  text-align: center;
  color: #fff;
  line-height: 30px;
}
.contact-item02:hover {
  background: rgb(218, 114, 114);
}

main {
  color: #000000;
}
.main-text {
  background: #ffffff;
  width: 700px;
  margin: 50px auto;
  padding: 10px 30px;
  box-shadow: 5px 5px 15px rgb(0, 0, 0, 0.5), -5px -5px 15px rgb(0, 0, 0, 0.5);
}
.main-text p {
  text-align: center;
  padding: 20px;
  font-size: 2rem;
}
.main-inner01 {
  background: #ffffff;
  width: 900px;
  margin: 50px auto;
  padding: 40px 30px 100px;
  box-shadow: 5px 5px 15px rgb(0, 0, 0, 0.5), -5px -5px 15px rgb(0, 0, 0, 0.5);
}
.reserve p {
  width: 100%;
  margin: 30px 0;
  font-weight: 200;
}
.reserve-text {
  margin-top: 10px;
  width: 100%;
  padding: 8px 0;
  border: 3px solid #ffffff;
  line-height: 1.2;
  box-shadow: 5px 5px 15px rgba(137, 100, 31, 0.5), -5px -5px 15px rgba(16, 130, 164, 0.5);
}
.submit-item {
  width: 100%;
  padding: 10px 0;
  font-size: 2rem;
  background: #000000;
  color: #fff;
}
.submit-item:hover {
  width: 100%;
  padding: 10px 0;
  font-size: 2rem;
  background: #ffffff;
  color: #000000;
}
.reserve-radio {
  margin-right: 30px;
}
/* send.php */
.send_container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.send_message-box {
  max-width: 400px;
  padding: 40px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  animation: fade-in 0.5s ease-in-out;
}

.send-icon {
  font-size: 50px;
  color: #007bff;
  margin-bottom: 20px;
}

.send_message-box h1 {
  color: #333;
  margin-bottom: 20px;
}

.send_message-box p {
  color: #666;
  margin-bottom: 40px;
}

.send_message-box .button {
  padding: 10px 20px;
  background-color: #007bff;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  text-decoration: none; /* リンクの下線を非表示 */
  display: inline-block; /* インライン要素として表示 */
}

.send_message-box .button:hover {
  background-color: #0056b3;
}

@keyframes fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}
@media screen and (max-width: 1024px) {
  .main-text {
    width: 95%;
    max-width: 1024px;
    margin-top: -100px;
  }
  .main-text p {
    font-size: 1rem;
  }
  .main-inner01 {
    width: 95%;
    max-width: 1024px;
  }
  .reserve p {
    font-size: 0.7rem;
  }
  .send_container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin-top: -300px;
    margin-bottom: -150px;
  }
  
  
}