* {margin:0; padding:0;}

body {width: 100%; margin:0; padding:0; font-size:18px; line-height:1.4; background-image: url("backimage001.webp");background-size: cover;font-family:ヒラギノ角ゴ Pro W3,Hiragino Kaku Gothic ProN,"Trebuchet MS", Verdana, sans-serif;}

h1,h2,h3,h4,h5,p,b,i,u,form {margin:0.5em 0;}

#content {
  width: 95%;
  max-width: 900px; /* 600pxから拡張して、動画が並べるスペースを作る */
  margin: 0px auto;
}

.form-content{
  max-width: 600px;
  margin: 10px auto;
  background-color: #FFF ;
  border-radius: 15px;
  padding: 20px 5px;
}
.Form-Title-Container {
  text-align: center;
  margin-bottom: 40px;
}

.Form-Title {
  font-size: 32px;
  font-weight: bold;
  letter-spacing: 0.1em;
  color: #1f73b7; /* 既存の青色に合わせる */
  margin: 0;
}

.Form-Subtitle {
  font-size: 14px;
  color: #888;
  margin-top: 5px;
  position: relative;
  display: inline-block;
  padding: 0 50px;
}

/* 左右に線を引く装飾 */
.Form-Subtitle::before,
.Form-Subtitle::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 40px;
  height: 1px;
  background-color: #d8dcde;
}

.Form-Subtitle::before { left: 0; }
.Form-Subtitle::after { right: 0; }

/* フォーム全体のコンテナ */
.Form {
  max-width: 700px;
  margin: 0 auto;
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  color: #333;
}

/* 各アイテムの余白 */
.Form-Item {
  margin-bottom: 25px;
}

/* ラベルのデザイン */
.Form-Item-Label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 14px;
}

/* 必須マーク */
.Form-Item-Label span {
  margin-left: 4px;
  font-size: 12px;
}

/* 入力欄（テキスト・メール・テキストエリア共通） */
.Form-Item-Input, 
.Form-Item-Textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #d8dcde;
  border-radius: 4px;
  box-sizing: border-box; /* 幅の計算を調整 */
  font-size: 15px;
  transition: border-color 0.2s, box-shadow 0.2s;
  background-color: #fff;
}

/* フォーカス時の色（システムファイブ風の青） */
.Form-Item-Input:focus, 
.Form-Item-Textarea:focus {
  outline: none;
  border-color: #1f73b7;
  box-shadow: 0 0 0 2px rgba(31, 115, 183, 0.1);
}

/* お問い合わせ内容（テキストエリア）の高さ */
.Form-Item-Textarea {
  height: 150px;
  resize: vertical; /* ユーザーが縦に広げられるように */
}

/* 注意書きのテキスト */
.Form-Notice {
  font-size: 13px;
  color: #666;
  text-align: center;
  margin: 30px 0 20px;
  line-height: 1.6;
}

/* ボタンのレイアウト */
.Form-Btn-Group {
  text-align: center;
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

/* 送信・リセットボタン共通 */
#submit_button {
  appearance: none;
  border: none;
  border-radius: 4px;
  padding: 12px 40px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: opacity 0.2s;
  min-width: 160px;
}

/* 確認画面ボタン（メインカラー） */
#submit_button[type="submit"] {
  background-color: #1f73b7;
  color: #fff;
}

/* リセットボタン（サブカラー） */
#submit_button[type="reset"] {
  background-color: #eee;
  color: #333;
}

#submit_button:hover {
  opacity: 0.8;
}
.button-container {
  text-align: center;
  margin-top: 40px;
}

.button-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 35px;
  background-color: #ffffff; /* 白背景で上品に */
  color: #1f73b7;            /* フォームのテーマカラー */
  border: 1px solid #1f73b7; /* 枠線 */
  text-decoration: none;
  font-size: 16px;
  font-weight: bold;
  border-radius: 50px;       /* 角を丸くして柔らかい印象に */
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

/* 矢印の装飾 */
.arrow {
  margin-right: 8px;
  transition: transform 0.3s ease;
}

/* ホバー（マウスを乗せた時）の演出 */
.button-link:hover {
  background-color: #1f73b7;
  color: #fff;
  box-shadow: 0 4px 12px rgba(31, 115, 183, 0.2);
}

.button-link:hover .arrow {
  transform: translateX(-5px); /* 矢印がピコッと左に動く */
}
@media screen and (max-width: 480px) {
  }