#main-nav-pc {
  display: flex;
  justify-content: center;
}

#contact {
  text-align:center;
}

.pc-menu {
    background-color: rgb(255, 236, 128);
    display: flex;
    width: 8em;
    height: 3em;
    justify-content: center;
    align-items: center;
    border-radius: 15em;
    text-decoration: none;
    margin-left: 16px;
}

@media (max-width: 600px) {
  .pc-menu {
    display: none;
  }

  body {
    font-family: Noto Sans JP;
  }
}

.text-decoration-none {
  text-decoration: none;
  color: black;
}

form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
s

/* フォーム全体 */
.contact-form {
  max-width: 520px;
  margin: 40px auto;
  padding: 24px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* input / select / textarea 共通 */
form input,
form select,
form textarea {
  width: 100%;
  box-sizing: border-box;

  padding: 10px 12px;
  font-size: 16px;

  border-radius: 8px;
  border: 1px solid #ccc;
}


/* フォーカス時 */
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: #ffd84d;
  box-shadow: 0 0 0 3px rgba(255, 216, 77, 0.3);
}

/* textarea */
.contact-form textarea {
  resize: vertical;
}

/* 送信ボタン */
.contact-form button {
  margin-top: 10px;
  background: #ffd84d;
  color: #000;
  font-family: "Mochiy Pop One", sans-serif;
  font-size: 16px;
  padding: 14px;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.2s ease;
}

/* hover */
.contact-form button:hover {
  background: #ffcc00;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

form button {
  margin-top: 8px;
  padding: 12px;
  font-size: 16px;

  background: #2c87ff;
  color: white;
  border: none;
  border-radius: 999px;

  cursor: pointer;
}


/* スマホ対応 */
@media (max-width: 600px) {
  form {
    padding: 0 16px;
  }
}

.copyright {
    text-align: center;
}