@charset "UTF-8";

/* ===============================
   基本リセット
=============================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  color: #333;
  line-height: 1.7;
  background-color: #fff;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

table {
  border-collapse: collapse;
  width: 100%;
}

/* ===============================
   フォーム共通スタイル
=============================== */
form {
  max-width: 720px;
  margin: 60px auto;
  padding: 40px 30px;
  background-color: #fafafa;
  border: 1px solid #ddd;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

/* テーブルレイアウト */
.formTable th,
.formTable td {
  padding: 12px 10px;
  vertical-align: top;
  text-align: left;
}

.formTable th {
  width: 30%;
  font-weight: 600;
  color: #222;
  background-color: #f4f4f4;
  border-right: 1px solid #ddd;
}

.formTable td {
  width: 70%;
  background-color: #fff;
  border-bottom: 1px solid #eee;
}

/* ===============================
   入力要素デザイン（iPhone対応）
=============================== */
input,
textarea,
select {
  width: 100%;
  font-size: 16px; /* ★ズーム防止 */
  font-family: inherit;
  color: #333;
  border: 1px solid #ccc;
  border-radius: 6px;
  padding: 10px 12px;
  background-color: #fff;
  appearance: none;
  -webkit-appearance: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

/* フォーカス時 */
input:focus,
textarea:focus,
select:focus {
  border-color: #21ADE1;
  box-shadow: 0 0 0 3px rgba(33, 173, 225, 0.2);
  outline: none;
}

/* ===============================
   ボタンデザイン
=============================== */
input[type="submit"],
input[type="button"],
input[type="reset"] {
  width: auto;
  display: inline-block;
  margin: 10px 8px;
  padding: 10px 24px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

input[type="submit"] {
  background-color: #21ADE1;
  color: #fff;
}

input[type="submit"]:hover {
  background-color: #1a9cc9;
  box-shadow: 0 4px 10px rgba(33,173,225,0.25);
}

input[type="reset"] {
  background-color: #ccc;
  color: #333;
}

input[type="reset"]:hover {
  background-color: #bbb;
}
input[type="button"] {
  background-color: #ccc;
  color: #333;
}

input[type="button"]:hover {
  background-color: #bbb;
}
/* ===============================
   その他
=============================== */
p[align="center"] {
  text-align: center;
  margin-top: 20px;
}
#formWrap {
  margin-top: 50px;
}
#formWrap h3{
  margin-top: 20px;
  margin-bottom: 25px;
}
#formWrap p{
  line-height: 1.5em;	
}
.banner_h2 {
	margin-bottom: 0px;
}
/* ------- スマートフォンサイト ------- */
@media screen and (max-width: 767px) { 
 form {
    padding: 24px;
  }

  .formTable th,
  .formTable td {
    display: block;
    width: 100%;
    border: none;
    background: none;
    padding: 8px 0;
  }

  .formTable th {
    font-weight: 600;
    margin-top: 10px;
  }

  .formTable td {
    margin-bottom: 12px;
  }

  input[type="submit"],
  input[type="reset"] {
    width: 100%;
    margin: 8px 0;
  }
}

	
	
	
@media screen and (max-width: 480px) {
 
}





@media screen and (max-width: 320px) {

}