@charset "UTF-8";


/***

お問い合わせ
ninjaフォーム

***/

/*タイトル削除*/
.nf-form-title {
    display: none;
}


.nf-field-container{
	clear: both;
	width: 100%;
	height: auto;
	margin: 0;
	padding: 0;
	position: relative;
/*	background: rgba(113,189,189,0.5);*/
}

/*ラベル（項目タイトル）*/
.nf-field-label,
p.nf-field-label_cpu{
	clear: both;
	width: 100%;
	height: auto;
	font-family: 'Noto Serif JP' , 'ヒラギノ明朝 Pro W3', 'Hiragino Mincho Pro', 'ＭＳ Ｐ明朝', 'MS PMincho', serif ;
	font-weight: 400;
	font-size: 17px;
	line-height: 130%;
	color: #727171;
	text-align: left;
	margin: 15px 0 0;
	padding: 0;
	position: relative;
	top: 5px;
	
/*
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: flex-end;
*/
	
/*	background: rgba(165,188,124,1.00);*/
}
p.nf-field-label_cpu{
	margin: 15px 0 10px;
}
@media print, screen and (max-width: 800px) {
.nf-field-label,
p.nf-field-label_cpu{
	font-size: 3.87vw;
}
}


/*入力フォーム（入力枠）*/
.ninja-forms-field{
	clear: both;
	width: calc( 100% - 2px );
	width: 100%;
	height: auto;
	min-height: 60px;
	border-radius: 2px;
	margin: 0;
	padding: 0;
	
	border: 1px solid #ccc;
/*	border: none;*/
	border-collapse: collapse;
	
	color: #727171;
}


/*チェックボックス　選択部分調整*/
.nf-form-cont .listcheckbox-container {
	height: auto;
	margin: 0;
	padding: 0;
/*	background: rgba(84,165,89,0.4);*/
}
.nf-form-cont .listcheckbox-container .ninja-forms-field{
	min-height: 24px;
}
.nf-form-cont .listcheckbox-container ul {
	height: auto;
	margin: 0;
	padding: 0;
/*	background: rgba(212,133,217,1.00);*/
}

/* ① テキストを必ず表示 */
.nf-form-cont .listcheckbox-container .nf-field-element label,
.nf-form-cont .listradio-container   .nf-field-element label {
    display: inline-block !important;
    text-indent: 0 !important;
/*
    font-size: 14px !important;
    color: #333 !important;
*/
	 color: #727171;
	 
	clear: both;
	width: 100%;
	height: auto;
	font-family: 'Noto Serif JP' , 'ヒラギノ明朝 Pro W3', 'Hiragino Mincho Pro', 'ＭＳ Ｐ明朝', 'MS PMincho', serif ;
	font-weight: 400;
	font-size: 17px;
	line-height: 130%;
	line-height: 100.1%;
	color: #727171;
	text-align: left;
	margin: 15px 0 0;
	margin: 0;
	padding: 0;
	position: relative;
	top: 0.03em;
}
@media print, screen and (max-width: 800px) {
.nf-form-cont .listcheckbox-container .nf-field-element label,
.nf-form-cont .listradio-container   .nf-field-element label {
	font-size: 17px;
	font-size: 3.25vw;
}
}

/* ② ボタン風デザイン */
/*
.nf-form-cont .listcheckbox-container .nf-field-element ul li label,
.nf-form-cont .listradio-container   .nf-field-element ul li label {
    padding: 8px 16px;
    border-radius: 999px;
    border: 1px solid #ccc;
    background: #fff;
    cursor: pointer;
}
*/

/* ③ 選択時の色 */
/*
.nf-form-cont .listcheckbox-container .nf-field-element ul li input:checked + label,
.nf-form-cont .listradio-container   .nf-field-element ul li input:checked + label {
    background: #0073aa;
    color: #fff;
    border-color: #0073aa;
}
*/



/* ① リストの余計な装飾を消す */
.nf-form-cont .listcheckbox-container .nf-field-element ul,
.nf-form-cont .listradio-container   .nf-field-element ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* ② 各項目を「横並び」で配置 */
.nf-form-cont .listcheckbox-container .nf-field-element ul li,
.nf-form-cont .listradio-container   .nf-field-element ul li {
    display: flex;               /* 横方向に並べる */
    flex-direction: row;
    align-items: center;         /* 縦位置をセンター揃え */
    margin-bottom: 8px;          /* 項目間の余白 */
	 margin-bottom: 0;          /* 項目間の余白 */
}

.nf-form-cont .listcheckbox-container .nf-field-element ul,
.nf-form-cont .listradio-container   .nf-field-element ul{
   display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.nf-form-cont .listcheckbox-container .nf-field-element ul li,
.nf-form-cont .listradio-container   .nf-field-element ul li {
/*   background: rgba(199,93,95,1.00);*/
	width: 30%;
}
@media print, screen and (max-width: 800px) {
.nf-form-cont .listcheckbox-container .nf-field-element ul li,
.nf-form-cont .listradio-container   .nf-field-element ul li {
/*   background: rgba(199,93,95,1.00);*/
	width: 48%;
}
}


/* チェックボックス＋テキストを横一列＆中央に */
.nf-field-container.checkbox-container{
    display: flex;
	 justify-content: center;
    flex-wrap: nowrap;
/*	 background: rgba(220,62,65,1.00);*/
}
.nf-field-container.checkbox-container .nf-field-element {
	width: auto;
    
	 
/*	 background:rgba(50,198,187,1.00);*/
}


@media print, screen and (min-width: 801px) {
.nf-field-container.checkbox-container{
	width: 80%;
	max-width: 480px;
/*	height: 60px;*/
	margin: 15px auto 0;
	padding: 0;
	position: relative;
/*	top: 0.5em;*/
}
}


@media print, screen and (max-width: 800px) {
.nf-form-cont .listcheckbox-container .nf-field-element label,
.nf-form-cont .listradio-container   .nf-field-element label {
	font-size: 17px;
	font-size: 3.25vw;
}
}


/*チェックボックスで選択した項目をメール用に移植した「相談部位（メール用）」を非表示処理*/
#nf-field-10-container{
	position: absolute;
	top: 0;
	left: -10000000px;
}


	 

/*送信ボタン*/
.nf-field-container.submit-container{
	clear: both;
	width: 100%;
	height: 60px;
	margin: 0;
	padding: 0;
	position: relative;
	text-align: center;
}
@media print, screen and (min-width: 801px) {
.nf-field-container.submit-container{
	width: 80%;
	max-width: 480px;
	height: 60px;
	margin: 0 auto;
	padding: 0;
}
}
.nf-field-container.submit-container .nf-field-element input{
	clear: both;
	width: 100%;
	height: 60px;
	margin: 0;
	padding: 0;
	border: none;
	font-family: 'Noto Serif JP' , 'ヒラギノ明朝 Pro W3', 'Hiragino Mincho Pro', 'ＭＳ Ｐ明朝', 'MS PMincho', serif ;
	font-weight: 400;
	font-size: 25px;
/*	font-size: 5.68vw;*/
	line-height: 101%;
	margin: 0;
	padding: 0;
	color: #fff;/*同意ボタンオン*/
	letter-spacing: 0.6em;
	text-align: center;
	background:#006923;
	background:rgba(17,66,125,1.00);
	position: relative;
}
@media print, screen and (max-width: 800px) {
.nf-field-container.submit-container .nf-field-element input{
	font-size: 5.68vw;
}
}

/* フォームの中身を縦並び → 必要ならflexで順番調整 */
.nf-form-layout .nf-form-content {
    display: block;
   
}

/* エラーブロックを一番下に見せたい場合 */
.nf-form-errors {
    order: 999; /* 一番最後へ */
    margin-top: 50px;
	 text-align: center;
/*
	 padding: 20px 0;
	 background:rgba(44,165,223,0.3);
*/
}

/*同意ボタンオフ*/
input[type="submit"]:disabled {
	color:rgba(255,255,255,0.3);
	background:rgba(44,165,223,0.5);
/*	background: rgba(27,158,101,0.4);*/
}
/*同意ボタンオフ*/




