.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: #000;
    padding: 100px 0;
}
/* カード */
.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;
  }
  .coin-image img {
    margin: 20px 0;
    width: 210px;
  }
  .main-inner p {
    margin-bottom: 80px 0;
  }
  .main-inner h2 {
    font-size: 2rem;
    margin: 50px 0;
    border-bottom: 2px solid #202fb9;
    display: inline-block;
  }
  .coin-card {
    border: #000 1px solid;
    background: #c8c8c8;
    padding: 10px 10px;
    margin: 20px 0;
  }
  /* 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) {
    .separate-top h2 {
      top: 40%;
      font-size: 1.5rem;
    }
    .main-inner h2 {
      font-size: 1.5rem;
    }
    p {
      font-size: 0.7rem;
    }
  }