@charset "utf-8";
/* =========================
  利用規約・プライバシーポリシー 共通
========================= */
#wrapper:before {
	bottom: 40px;
}
.lp-terms {
	padding: 50px 0 200px;
	color: #333;
	font-size: 15px;
	line-height: 1.9;
}
.lp-terms .inner {
	max-width: 800px;
	margin: 0 auto;
}

/* =========================
  ページタイトル
========================= */
.terms-title {
	text-align: center;
	font-size: 32px;
	font-weight: bold;
	margin-bottom: 55px;
	padding-bottom: 20px;
	position: relative;
	border-bottom: 1px solid #ccc;
}

/* =========================
  章ブロック
========================= */
.terms-chapter {
	margin-bottom: 48px;
}

/* =========================
  h3（章タイトル）
  ※ 指定CSSを流用
========================= */
.terms-chapter h3 {
	margin: 0 0 25px;
	text-align: left;
}

.terms-chapter h3 span,
.terms-chapter h3 {
	display: inline-block;
	width: 80%;
	padding: 12px 25px;
	background: #2f8f3a;
	color: #fff;
	font-size: 20px;
	font-weight: bold;
	border-radius: 0 50px 50px 0;
	position: relative;
}

/* =========================
  条文ブロック
========================= */
.terms-article {
	padding-left: 25px;
}
.terms-article + .terms-article {
	margin-top: 25px;
}
.terms-article h4 {
	font-size: 20px;
	font-weight: bold;
	margin-bottom: 8px;
}

/* =========================
  テキスト・リスト
========================= */
.terms-article p {
	margin-bottom: 12px;
}

.terms-article ul,
.terms-article ol {
}

.terms-article ul li,
.terms-article ol li {
	margin-bottom: 6px;
	position: relative;
	font-size: 18px;
}
/*.terms-article ul li:nth-child(1):before {
	content: "1.";
	margin-right: 5px;
}
.terms-article ul li:nth-child(2):before {
	content: "2.";
	margin-right: 5px;
}
.terms-article ul li:nth-child(3):before {
	content: "3.";
	margin-right: 5px;
}
.terms-article ul li:nth-child(4):before {
	content: "4.";
	margin-right: 5px;
}
.terms-article ul li:nth-child(5):before {
	content: "5.";
	margin-right: 5px;
}
.terms-article ul li:nth-child(6):before {
	content: "6.";
	margin-right: 5px;
}
.terms-article ul li:nth-child(7):before {
	content: "7.";
	margin-right: 5px;
}*/

/* a, b, c リスト */
.terms-article ol[type="a"] {
	margin-left: 20px;
}
/*.terms-article ol li:nth-child(1):before {
	content: "a";
	margin-right: 5px;
}
.terms-article ol li:nth-child(2):before {
	content: "b";
	margin-right: 5px;
}
.terms-article ol li:nth-child(3):before {
	content: "c";
	margin-right: 5px;
}
.terms-article ol li:nth-child(4):before {
	content: "d";
	margin-right: 5px;
}
.terms-article ol li:nth-child(5):before {
	content: "e";
	margin-right: 5px;
}
.terms-article ol li:nth-child(6):before {
	content: "f";
	margin-right: 5px;
}
.terms-article ol li:nth-child(7):before {
	content: "g";
	margin-right: 5px;
}*/

/* 注釈 */
.terms-article .note {
	font-size: 13px;
	color: #666;
}

/* =========================
  フッター
========================= */
.terms-footer {
	margin-top: 64px;
	padding-top: 32px;
	border-top: 1px solid #ddd;
	text-align: center;
	font-size: 14px;
}
.terms-btn {
	margin-top: 24px;
}
.terms-btn .btn {
	display: inline-block;
	padding: 12px 32px;
	border: 1px solid #4a2e12;
	border-radius: 6px;
	color: #333;
	text-decoration: none;
	transition: 0.3s;
}
.terms-btn .btn:hover {
	background: #4a2e12;
	color: #fff;
}

/* =========================
  SP微調整
========================= */
@media screen and (max-width: 768px) {
	.lp-terms {
		padding: 30px 0 300px;
	}
	.terms-title {
		font-size: 24px;
		margin-bottom: 35px;
        padding-bottom: 10px;
	}
	.terms-chapter {
	    margin-bottom: 30px;
	}
	.terms-chapter h3 {
		font-size: 18px;
		padding: 10px 20px;
	}
	.terms-article {
		padding-left: 5%;
		padding-right: 5%;		
	}
	.terms-footer {
		padding-left: 5%;
		padding-right: 5%;
	}
}



/* =========================
  お問い合わせ 共通
========================= */
.contact {
	padding: 50px 5% 120px;
}

.contact .inner {
	max-width: 800px;
	margin: 0 auto;
}

/* =========================
  フォーム外枠
========================= */
#formWrap {
	max-width: 600px;
	margin: 0 auto;
	background: #ebebde;
	border: 1px solid #333;
	border-radius: 6px;
	padding: 32px 24px 40px;
	position: relative;
    z-index: 1;
}

/* =========================
  フォーム構造
========================= */
.formTable dl {
	display: flex;
	flex-direction: column;
	margin-bottom: 15px;
}

.formTable dt {
	font-weight: bold;
	font-size: 18px;
}
.formTable dd {
	margin: 0;
	font-size: 18px;
}
select {
	pointer-events: auto;
	-webkit-appearance: menulist;
	background-color: #fff;
	position: relative;
	z-index: 1;
	min-height: 38px;
	font-size: 18px;
}
/* =========================
 iOS Safari select 対策
========================= */

/* iOS Safari のみ適用 */
@supports (-webkit-touch-callout: none) {

  select {
    -webkit-appearance: menulist;
    appearance: menulist;
    background-color: #fff;

    /* タップ無効対策 */
    pointer-events: auto;

    /* 重なり対策 */
    position: relative;
    z-index: 2;

    /* iOS zoom / フォーカス対策 */
    font-size: 18px;
  }

}


/* =========================
  必須・任意ラベル
========================= */
.required {
	background: #e60000;
	color: #fff;
	font-size: 12px;
	padding: 2px 6px;
	margin-left: 8px;
	border-radius: 2px;
}

.any {
	background: #999;
	color: #fff;
	font-size: 12px;
	padding: 2px 6px;
	margin-left: 8px;
	border-radius: 2px;
}

/* =========================
  入力欄
========================= */
.record_area {
	width: 100%;
	padding: 10px 12px;
	font-size: 14px;
	border: 1px solid #ccc;
	border-radius: 4px;
	box-sizing: border-box;
}

.record_area:focus {
	outline: none;
	border-color: #2f8f3a;
	background: #fff;
}

/* textarea */
.formTable .textarea .record_area {
	min-height: 160px;
	resize: vertical;
}



/* =========================
  送信ボタン
========================= */
.form_btn {
	text-align: center;
	margin: 20px 0 0;
}

.form_btn input[type="submit"] {
	background: #2b8838;
	color: #fff;
	font-size: 16px;
	cursor: pointer;
	border-radius: 4px;
	transition: 0.3s;
	border: none;
	max-width: 150px;
	width: 100%;
    height: 40px;
}

.form_btn input[type="submit"]:hover {
	color: #fff;
}

/* =========================
  注意文
========================= */
.form p {
	font-size: 13px;
	line-height: 1.7;
	color: #333;
	margin-top: 16px;
}

/* =========================
  SP調整
========================= */
@media screen and (max-width: 750px) {
	.contact {
		padding: 30px 5% 100px;
	}
	#formWrap {
		padding: 24px 16px 32px;
	}
}



/* =========================
  確認画面：入力フォーム寄せ
========================= */

#formWrap table.formTable {
	width: 100%;
	border-collapse: separate;
	border-spacing: 0 16px; /* 各項目の間隔 */
	background: transparent;
	border: none;
}

/* 各行 */
#formWrap table.formTable tr {
	display: block;
}
#formWrap table.formTable tr + tr {
    margin-top: 15px;
}

/* ラベル */
#formWrap table.formTable th {
	display: block;
	width: 100%;
	font-size: 18px;
	font-weight: bold;
	color: #333;
	background: none;
	border: none;
	text-align: left;
}

/* 必須ラベルがあっても壊れない */
#formWrap table.formTable th span {
	margin-left: 6px;
}

/* 値表示（入力欄風） */
#formWrap table.formTable td {
	display: block;
	width: 100%;
	padding: 10px 12px;
	background: #fff;
	border: 1px solid #ccc;
	border-radius: 4px;
	line-height: 1.6;
	min-height: 44px;
	box-sizing: border-box;
}

/* textarea系（お問い合わせ内容） */
#formWrap table.formTable tr:last-child td {
	min-height: 120px;
	white-space: pre-wrap;
}

/* hidden input は非表示 */
#formWrap table.formTable input[type="hidden"] {
	display: none;
}

#formWrap .error_h4 {
	font-size: 18px;
}

/* 戻る（サブ） */
#formWrap .form_btn input[type="button"] {
	background: #fff;
	padding: 5px 15px;
	color: #333;
	border: 1px solid #333;
	margin-left: 10px;
}

#formWrap .form_btn input[type="button"]:hover {
	background: #333;
	color: #fff;
}





@media screen and (max-width: 750px) {
	#formWrap .form_btn input[type="button"] {
	    margin-left: 0;
	    margin-top: 20px;
	    width: 150px;
	    height: 40px;
	}
}



/* =========================
  サンクスページ
========================= */

.thanks_box {
	max-width: 720px;
	margin: 0 auto 40px;
	padding: 32px 24px;
	border-radius: 8px;
	text-align: center;
	box-sizing: border-box;
	background-color: #fff;
	border: 1px solid #333;
}

/* タイトル */
.tanks_ttl {
	font-size: 22px;
	font-weight: bold;
	margin-bottom: 24px;
	line-height: 1.6;
	text-align: center;
}

/* 本文 */
.tanks_txt {
	font-size: 15px;
	line-height: 2;
	color: #333;
	text-align: center;
}

/* 注意書き（※から始まる文）を少し弱める */
.tanks_txt br + br {
	margin-bottom: 8px;
}

/* トップへ戻る */
.top_back {
	text-align: center;
	margin-top: 24px;
}

.top_back a {
	display: inline-block;
	color: #2f8f3a;
    text-decoration: underline;
}
.top_back a:hover {
}

/* =========================
  SP対応
========================= */
@media screen and (max-width: 750px) {
	.thanks_box {
		padding: 24px 16px;
	}
	.tanks_ttl {
		font-size: 18px;
	}
	.tanks_txt {
		font-size: 14px;
		line-height: 1.9;
	}

}
