@charset "utf-8";

main {
  margin: 260px auto 0px;
}

.pagetitle {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pagetitle h1 {
  font-size: 28px;
  border-bottom: 2px solid #000;
  width: fit-content;
  line-height: 1;
  letter-spacing: 0;
}

.pagetitle span {
  font-size: 14px;
  font-family: inter;
  letter-spacing: 0.2;
  line-height: 1;
}

.contact-lead {
  margin: 80px auto;
  text-align: center;
  font-size: 16px;
  line-height: 2.2;
  position: relative;
}

.br {
  display: none;
}

.sparkle {
  position: absolute;
  width: 250px;
  top: 30px;
  right: 430px;
}

h2 {
  font-size: 16px;
  letter-spacing: 0.1;
}

form {
  background-color: white;
  padding: 20px;
  width: min(850px,80%);
  margin: 80px auto 200px;
  border: 1px solid #CCCCC4;
  text-align: center;
}

/* ラベルのスタイル */
.label {
  display: block;
  margin-top: 25px;
  color: #000;
  width: 150px;
letter-spacing: 0.1;
}

/* 入力欄のスタイル */
input, textarea {
  width: 300px;
  height: 40px;
  padding: 10px;
  margin: 30px 0 0 0;
  border: 1px solid #CCCCC4;
  font-size: 14px;
}

/* テキストエリアの高さを調整 */
textarea {
  width: 500px;
  resize: vertical;
  height: 200px;
}

/* 送信ボタンのスタイル */
button {
  background-color: #fff;
  border: 1px solid #CCCCC4;
  padding: 5px;
  width: 200px;
  margin: 30px auto;
  font-family: sans-serif;
  font-size: 14px;
}

/* ホバー時のボタンスタイル */
button:hover {
  background-color: #E9E4DE;
}

.contact-inner {
  display: flex;
  font-size: 14px;
  font-family: sans-serif;
  gap: 40px;
  width: 95%;
  margin: 0 auto;
  text-align: center;
}

@media screen and (max-width: 800px) {
 
main {
  margin-top: 200px;
}

  .pagetitle h1 {
    font-size: 22px;
  }

  .contact-lead {
    width: 90%;
    margin: 80px auto;
    text-align: center;
    font-size: 15px;
    line-height: 2;
    position: relative;
  }

  form {
      padding: 15px;
      width: 95%;
  }
  button {
      font-size: 14px;
      padding:4px;
      background-color: #E9E4DE;
  }

  .contact-inner {
 flex-direction: column;
    font-size: 15px;
    font-family: sans-serif;
    gap: 0px;
    width: 90%;
    margin: 0 auto;
    text-align: left;
  }

  input, textarea {
    width: 300px;
    height: 40px;
    padding: 0;
    margin-top: 0;
    border: 1px solid #CCCCC4;
  }

  textarea {
    width: 95%;
}

.br {
  display: inline-block;
}

.label {
  font-size: 14px;
}
}