<style>
@charset "UTF-8";

.zen-kaku-gothic-new-regular {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
}

body {
  font-family: "Noto Sans JP", "メイリオ", "Meiryo", "ＭＳ ゴシック",
    "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN", sans-serif;
  font-size: 0.9rem;
  line-height: 1.5;
  color: #333;
  background-color: #fff;
  font-weight: 400;
}
/* mainタグ */
.contact_main {
  max-width: 780px;
  width: 100%;
  margin: 0 auto;
}
/* 見出し */
.contact_h1 {
  margin-bottom:10px;
  font-size: 1.4rem;
  font-weight: 500;
  margin-top: 1em;
  text-align: center;
}
/* formタグ：フォーム全体 */
.contact_form {
  margin: 40px;
}
/* ------------------------------------ */
/* フォーム共通書式 */
/* ------------------------------------ */
/* labelタグ：項目のラベルと入力欄を囲うタグ */
.form_block {
  display: grid;
  grid-template-columns: 16em 1fr;
  padding: 1em;
  align-items: center;
}
/* 必須アイコン */
.form-required {
  margin-left: 1em;
  color: #fff;
  background-color: #f67a7a;
  padding: 1px 4px;
  font-size: 0.8rem;
  border-radius: 3px;
}
/* 入力欄 */
.form_field {
  border: 1px solid #ccc;
  border-radius: 4px;
    padding: 0.5em 1em;
}
/* ------------------------------------ */
/* ラジオボタン専用 */
/* ------------------------------------ */
.label_radio + .label_radio {
}
.radio_span {
}
/* ------------------------------------ */
/* checkbox専用 */
/* ------------------------------------ */
.label_checkbox + .checkbox {
	margin-left: 0em;
}
.checkbox_span {
  margin-left: 0:em;
}

/* ------------------------------------ */
/* セレクト：プルダウン専用 */
/* ------------------------------------ */
.select_block {
  padding-left: 0em;
}
/* ------------------------------------ */
/* テキスト入力 */
/* ------------------------------------ */
.disc_block {
  border-top: 1px dotted #606060;
  padding: 1em 0 1em 0;
  align-items: start;
	height: auto;
}
.text_block {
  border-top: 1px dotted #606060;
  padding: 1em 0 0.5em 0;
  align-items: start;
	height: auto;
}
.center{
	text-align: center;
	font-size: 0.7rem;
}
/* ------------------------------------ */
/* 段落入力 */
/* ------------------------------------ */
.form_block.--textfield {
  align-items: start;
  height: auto;
}
.form_field.--textfield {
  height: 20em;
  resize: none;
}
/* ------------------------------------ */
/* 送信ボタン */
/* ------------------------------------ */
.form-btn{
  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 1rem;
  background-color: #6695ED;
  border-radius: 5px;
	color: #fff;
	padding: 1em;
	margin-top: 1em;
  margin-left: auto;
  margin-right: auto;
}
/* ------------------------------------ */
/* 個人情報保護 */
/* ------------------------------------ */
.privacy{
  text-align: center;
  font-size: 1rem;
  margin-top: 1em;
  margin-bottom: 1em;
}

/* ------------------------------------ */
/* 送信後のサンクスページ専用 */
/* ------------------------------------ */
.section-thanks{
  padding: 100px 40px;
}
.thanks_h1{
  font-size: 2.8rem;
  text-align: center;
}
.thanks_a{
  background-color:#6695ED;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  margin-top: 100px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.8rem;
  width: 12em;
  height: 3em;
}
</style>