/* contact.css */

/* ページ背景 */
body {
  background-color: #0a0a23;
  color: white;
  font-family: 'Noto Serif JP', serif;
  margin: 0;
  padding: 0;
}

/* メインコンテンツ */
.contact-container {
  max-width: 600px;
  margin: 40px auto;
  padding: 30px 40px;
  background: linear-gradient(145deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 15px;
  box-shadow: 0 0 30px rgba(0, 206, 209, 0.3), 0 0 60px rgba(102, 51, 153, 0.3);
  backdrop-filter: blur(8px);
}

.contact-container h2 {
  font-size: 2em;
  color: #FF6347;
  margin-bottom: 20px;
  text-align: center;
}

.contact-container p {
  text-align: center;
  margin-bottom: 30px;
  font-size: 1.1em;
}

/* フォーム */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-form label {
  font-weight: bold;
  text-align: left;
  font-size: 1em;
  color: #00CED1;
}

.contact-form input,
.contact-form textarea {
  padding: 12px 15px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background-color: rgba(255, 255, 255, 0.05);
  color: white;
  font-size: 1em;
  transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #00CED1;
  background-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 10px #00CED1;
}

.original-button {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #FF6347, #FF1493);
  color: white;
  padding: 14px 28px;
  border: none;
  border-radius: 10px;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 0 12px #FF6347;
  transition: transform 0.3s ease;
  font-family: 'DotGothic16', sans-serif;
}

.original-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: rgba(255, 255, 255, 0.3);
  transform: skewX(-25deg);
}

.original-button:hover::before {
  animation: shine 0.7s ease-in-out forwards;
}

@keyframes shine {
  0% {
    left: -75%;
  }
  100% {
    left: 125%;
  }
}

.original-button:hover {
  transform: scale(1.1);
}

.biglogo {
  text-align: center;
  margin: 30px auto;
}
.biglogo img {
  width: 100%;
  max-width: 600px;
  height: auto;
}

.contact-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 20px;
}

/* アイコン画像の大きさを調整 */
.contact-title img.contact-icon {
  width: 40px; /* 必要に応じてサイズ調整 */
  height: auto;
  animation: spin 2s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}


@keyframes fadePop {
  0% {
    opacity: 0;
    transform: scale(0.5) rotate(-10deg);
  }
  100% {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
}

















