@charset "UTF-8";
/* CSS Document */

body{
	
}

#wrapper{
	width: 100%;
	height: auto;
	overflow: hidden;
}
a[href*="tel:"] {
	pointer-events: none;
}

/*------------------------------------------------------------
	ヘッダー　　ナビ意外
------------------------------------------------------------*/
h1{
	width: 267px;
	height: 87px;
	margin-top: 14px;
}
h1:hover{
	opacity: 0.7;
}
.headwrap{
	width: 100%;
	height: 115px;
	background-color:rgba(255,255,255,0.8);
	position: fixed;
	top:0;
	z-index: 5;
	box-shadow: 10px 5px 5px #999999;
	
}
.header{
	width: 100%;
	max-width: 1200px;
	height: 115px;
	margin: 0 auto;
	position: relative;
	padding-left: 10px;
	padding-right: 10px;
	box-sizing: border-box;
}

/*------------------------------------------------------------
	ヘッダーナビゲーション
------------------------------------------------------------*/
.btn-gnavi{
	width: 100%;
	max-width:  650px;
	height: 115px;
	position: absolute;
	top:0;
	right: 10px;
}
ul.menubox{
	width: 650px;
	height: 115px;
	display: flex;
	justify-content:space-between;
  	align-items: center;
}
ul.menubox li {
	width: auto;/*156*/
	height: 115px;
	text-align: center;
	box-sizing: border-box;
}
ul.menubox li a{
	width: auto;
	height: 115px;
	line-height: 115px;
	font-weight: bold;
}

/*-----------ホバーでアンダーライン--基準------------- */

ul.menubox li a {
position: relative; /*アンダーラインの位置を決めるための基準 */
}

ul.menubox li a::after {
position: absolute; /*親要素であるaタグを基準に位置を指定*/
left: 0;            /*アンダーラインを各メニュー（aタグ）の左端に指定*/
content: '';        /*本来は、擬似要素に入るテキストなどを’’内に指定。今回はアンダーラインなので何も記載しない*/
width: 100%;        /*アンダーラインを各aタグの幅に合わせる*/
height: 2px;        /*アンダーラインの高さ（太さ）*/
background: #ea5413;/*アンダーラインの色  コンセプトカラーオレンジ*/
}

/*-----------ホバーでアンダーライン--動き追加------------- */
ul.menubox li a::after {
position: absolute;
left: 0;
content: '';
width: 100%;
height: 2px;
background: #ea5413;
bottom: -15px;
transform: scale(0, 1);
transform-origin: center top; /*変形（アンダーラインの伸長）の原点がaタグ（各メニュー）の右端*/
transition: transform 0.3s;   /*変形の時間*/
}

ul.menubox li a:hover::after {
transform: scale(1, 1); /*ホバー後、x軸方向に1（相対値）伸長*/
}


/*------------------------------------------------------------
     メイン画像
------------------------------------------------------------*/
.bg-switcher{
	width: 100vw;
    height: 800px;
    overflow: hidden;
	background-position: center center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
	margin-top: 115px;/*navの高さ*/
	
}
.slider{
	width: 100%;
    height: auto;
	background-position: center center;
    background-size: cover;
}



/*------------------------------------------------------------
	デザインチェック用　画像のみの時
------------------------------------------------------------*/

.test_Imgbox{
	width: 1440px;
	height: auto;
	margin: 0 auto;
	margin-top: 115px;/*navの高さ*/
}
.test_Imgbox_top{
	width: 1440px;
	height: auto;
	margin: 0 auto;
	margin-top: -420px;
}

/*------------------------------------------------------------
	各ページメイン画像
------------------------------------------------------------*/

.img_about{
	background:url("../imgs/img_about.jpg");

}
.img_everyone{
	background:url("../imgs/img_everyone.jpg");	
}

.img_office{
	background: url("../imgs/img_office.jpg");
}
.img_profile{
	background:url("../imgs/img_profile.jpg");
}

.img_contact{
	background:url("../imgs/img_contact.jpg");
	
}
.img_page{
	width: 100%;
	height: 280px;
	margin-top: 115px;/*headerの高さ分下げる*/
	margin-bottom: 120px;
	background-repeat: no-repeat;
	background-size: cover;	
}

/*------------------------------------------------------------
	フッター
------------------------------------------------------------*/

.footerwrap{
	width: 100%;
	height:190px;
	background-color: #f8b62d;/*footer薄オレンジ*/
	padding-left: 10px;
	padding-right: 10px;
	box-sizing: border-box;
}

.footer{
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	display:flex;
	flex-wrap: wrap;/*一行に収まらない時に複数行に*/
	justify-content:space-between;/*両端から均等に配置*/
}
.footlogo{
	width: 287px;
	height: 94px;
	margin-top: 50px;
}
.footinfobox{
	width: 320px;
	height: auto;
	margin-top: 40px;
	color: #ffffff;
	text-align: right;
}
.footsns{
	display:flex;
	justify-content: flex-end;/*左寄せ*/
	margin-bottom: 10px;
}
.footsns li a{
	font-size: 50px;
	color: #ffffff;
	margin-right: 20px;
}
.footsns li a:hover{
	color:#ea5413; 
	transition: 0.5s;
}
.footadress{
	font-size: 0.9em;
	line-height: 1.2em;
	font-weight: bold;
	text-align: right;	
}
.copyright{
	font-size: 0.8em;
}
/*------------------------------------------------------------
    レイアウト
------------------------------------------------------------*/

.contents{
	width: 100%;
	margin-top: 0px;
}

.w1200wrap{
	width: 100%;
	max-width: 1200px;
	height: auto;
	margin: 0 auto;
	padding-left: 10px;
	padding-right: 10px;
	box-sizing: border-box;
}
.box_flex1200{
	width: 100%;
	max-width: 1200px;
	height: auto;
	display:flex;
	flex-wrap: wrap;/*一行に収まらない時に複数行に*/
	justify-content:space-between;/*両端から均等に配置*/
	margin: 0 auto;
	padding-left: 10px;
	padding-right: 10px;
	box-sizing: border-box;
}
.box_flex1200_evenly{
	width: 100%;
	max-width: 1200px;
	height: auto;
	display:flex;
	flex-wrap: wrap;/*一行に収まらない時に複数行に*/
	justify-content:space-evenly;/*均等に配置各アイテムの周りに同じ大きさの間隔を置く*/
	margin: 0 auto;
}
.box_flex1200reverse{
	width: 100%;
	max-width: 1200px;
	height: auto;
	display:flex;
	flex-wrap: wrap;/*一行に収まらない時に複数行に*/
	flex-direction: row-reverse;/*順番を逆に*/
	justify-content:space-between;/*両端から均等に配置*/
	margin: 0 auto;
}
.box_flex1000{
	width: 100%;
	max-width: 1000px;
	height: auto;
	display:flex;
	flex-wrap: wrap;/*一行に収まらない時に複数行に*/
	justify-content:space-between;/*両端から均等に配置*/
	margin: 0 auto;
}
.w740{
	width: 740px;
}
.w400{
	width: 400px;
}
.width100{
	width: 100%;
}

/*------------------------------------------------------------
	共通
------------------------------------------------------------*/
.h2_greenlinebox{
	width: 100%;
	height: auto;
	border-bottom: solid 5px #acd598;/*薄緑*/
	box-sizing: border-box;
}
.h2_orangelinebox{
	width: 100%;
	height: auto;
	border-bottom: solid 5px  #f8b62d;/*footer薄オレンジ*/
	box-sizing: border-box;
}
.h2_obi{
	width: 100%;
	max-width: 1200px;
	height: auto;
	min-height: 100px;
	border-radius: 50px;
	color: #ffffff;
	font-size: 2.5em;
	line-height: 1.7em;
	font-weight: bold;
	margin: 0 auto 100px auto;
	text-align: center;
	padding: 20px;
	display: flex;
	align-items: center;/*天地センター*/
	justify-content: center;/*左右センター*/
}

/*----地色------*/

.bg_dot_orange{
	width: 100%;
	height: auto;
	background: url("../imgs/bg_orangdot.jpg");
	padding: 70px 0;
}
.bg_usu_orange{
	width: 100%;
	height: auto;
	background-color: #f9dcc5;/*footer薄オレンジ*/
	padding: 70px 0;
}

.box_white{
	width: 100%;
	height: auto;
	padding: 70px 0;
}

.bg_dot_green{
	width: 100%;
	height: auto;
	background:url("../imgs/bg_grreen.jpg");
	padding: 70px 0;
}
.bg_usu_green{
	width: 100%;
	height: auto;
	background-color: #f2f6da;/*薄グリーン*/
	padding: 70px 0;
}
/*-----テーブル------*/
table.price{
	width: 70%;
	height: auto;
	margin: 0 auto;
}
table.price thead{
	width: 100%;
	background-color: #f2f6da;/*薄グリーン*/
	font-weight: bold;
}
table.price tr,table.price th,table.price td{
	height:  48px;
	border: solid 1px #23ac38;/*グリーン*/
	vertical-align: middle;
	padding: 0 1em;
}
table.price th{
	font-weight: bold;
	text-align: left;
}
.tablew45{
	width: 45%;
}
.tablew55{
	width: 55%;
}
.tablew30{
	width: 30%;
}
.tableattention{
	margin-top: 10px;
	text-align: center;
	font-size: 0.9em;
}
/*------ボタン----------*/
.btnmail{
	width: 800px;
	height: 90px;
	display: flex;
 	justify-content:center;
	margin: 20px auto;
	border: solid 3px #ea5413;/*基準濃いオレンジ*/
	background-color: #ffffff;
	font-weight: bold;
	text-align: center;
	font-size: 1.4em;
	border-radius: 45px;
	box-sizing: border-box;
	line-height: 90px;
	color: #ea5413;/*基準濃いオレンジ*/	
}
.btnmail:hover{
	background-color:#ea5413;/*基準濃いオレンジ*/
	color: #ffffff;
	transition :0.5s;
}
.btnsend{
	width: 800px;
	height: 90px;
	display: flex;
 	justify-content:center;
	margin: 20px auto;
	background-color: #ea5413;/*基準濃いオレンジ*/
	font-weight: bold;
	color: #ffffff;
	text-align: center;
	font-size: 1.4em;
	border-radius: 45px;
	box-sizing: border-box;
	line-height: 90px;
}
.btnsend:hover{
	background-color: #f8b62d;/*薄オレンジ*/
	color: #ea5413;/*基準濃いオレンジ*/	
	transition :0.5s;
}

/*------------------------------------------------------------
	トップページ
------------------------------------------------------------*/
.ichatch{
	width: 600px;
	height: auto;
	margin: 0 auto;
}
.ichatch img{
	width: 100%;
	height: auto;
}
.box_ichatch{
	width: 100%;
	height: 530px;
	margin: -170px auto 0 auto;
	position: relative;
	z-index: 2;
	background-image: url("../imgs/bg_spoon.jpg");
	background-position: bottom right;
}

.box_toplead{
	width: 100%;
	height: auto;
	background-image: url("../imgs/bg_fork.jpg");
	background-position: bottom left;
	padding: 0px 0px 80px 0px;

}
.toplead{
	font-size: 28px;
	line-height: 1.5em;
	font-weight: bold;
	text-align: center;
}
.top_message{
	width: 770px;
	height: auto;
	margin: 20px auto;
}
.btn_top_aboutnaru{
	width: 245px;
	height: 109px;
	margin: 75px auto 0px auto;
}
.btn_top_aboutnaru:hover{
	opacity: 0.7;
	transition: 0.5s;
}
.harfArea{
	width: 100%;
	height: 500px;
	display: flex;
	flex-wrap: wrap;/*一行に収まらない時に複数行に*/
}
.harfArea2{
	width: 100%;
	height: auto;
	display: flex;
	flex-wrap: wrap;/*一行に収まらない時に複数行に*/
	flex-direction: row-reverse; /* 横並び逆順 */
}
.everyoneimgbox{
	width: 50%;
	height: 500px;
	background-image: url("../imgs/top_img_everyone.jpg");
	background-repeat: no-repeat;
	background-size: cover;	
}
.businessimgbox{
	width: 50%;
	height: 500px;
	background-image:url("../imgs/top_img_office.jpg");
	background-repeat: no-repeat;
	background-size: cover;	
}
.harftexbox_R{
	width: 50%;
	height: 500px;
	display: flex;
	align-items: center;
	justify-content: flex-start;/*右寄せ*/
	padding-left: 50px;
	
}
.harftexbox_L{
	width: 50%;
	height: 500px;
	display: flex;
	align-items: center;
	justify-content: flex-end;/*左寄せ*/
	padding-right: 50px;
}

.top_pageinfo{
	width: 550px;
	background-color: #ffffff;
	padding: 2em;
	text-align: center;
	font-size:1.2em;
	line-height: 2em;
	font-weight: normal;
	color: #333333;
	border-radius:30px;
}

.top_pagettle{
	font-size: 1.5em;
	font-weight: bold;
	text-align: center;
	margin-top: 40px;
}
.btn_more_page{
	font-size: 2.5em;
	font-weight: bold;
	text-align: center;
	margin-top: 20px;
}
.hover_bg_orange:hover{
	background-color: #ea5413;/*オレンジ*/
	color: #ffffff;
	transition :0.5s;
}
.hover_bg_green:hover{
	background-color: #23ac38;
	color: #ffffff;
	transition :0.5s;
}
.top_pagettle:hover,.btn_more_page:hover{
	opacity: 0.6;
}
.box_topabout{
	width: 100%;
	height: auto;
	padding: 60px;
	background-image: url("../imgs/bg_bokashi.jpg");
	background-repeat: no-repeat;
	background-size: cover;
}
.btn_aboutnikochan{
	width: 428px;
	height: 428px;
	background-image: url("../imgs/top_btn_naru.png");
	background-repeat: no-repeat;
	margin: 0 auto;
	padding: 50px 0px;
	border-radius: 214px;
	margin-bottom: 40px;
}
.btn_aboutnikochan:hover{
	  background-color: rgba(0,0,0,0.3);
 	 background-blend-mode: darken;/*背景画像を黒地に透過*/
		transition :0.5s;
}
.topttl_about{
	text-align: center;
	font-weight: bold;
	font-size: 2.2em;
	color: #ffffff;
	margin-bottom: 20px;
}
.boldwhitecenter{
	text-align: center;
	font-weight: bold;
	font-size: 1.4em;
	line-height: 1.6em;
	color: #ffffff;
}
.top_telkochira{
	text-align: center;
	font-size: 1.2em;
	margin-bottom: 10px;
}
.top_tel{
	font-size: 3.5em;
	font-weight: bold;
	text-align: center;
}
.airplan{
	font-size: 2em;
	margin-right: 20px;
}

/*------------------------------------------------------------
	なるについてページ
------------------------------------------------------------*/
.ttl_aboutnaru{
	width: 226px;
	height: 104px;
	margin: 0 auto 100px auto;
}
.bg_gohanbogkasih{
	width: 100%;
	height: auto;
	background-color: rgba(210,114,116,1.00);
	background: url("../imgs/bgricebokashi.jpg");
	background-repeat: no-repeat;
	background-position: bottom left;
	padding-bottom: 80px;
	margin-bottom: 100px;

}
.aboutnumberbox{
	width: 100%;
	max-width: 1200px;
	height: auto;
	margin: 0 auto;
	padding: 30px 0 0 50px;
	box-sizing: border-box;
}
.aboutlist ul{
	width: 100%;
	height: auto;

}
.aboutlist li{
	display: flex;
	flex-wrap: wrap;/*一行に収まらない時に複数行に*/	
	margin: 70px 0px;
}
.number{
	width: 61px;
	height: 82px;
	padding: 0 90px 0 40px;
}
.numbertexbox{
	width: 80%;
	max-width: 1000px;
	margin-top: 2em;
}
.numbertex{
	font-size: 1.7em;
	line-height: 2em;
	font-weight: bold;
	margin-bottom: 10px;
}
.numbertexlist{
	padding-left:1em;
	text-indent:-1em;
	margin-bottom: 20px;
	
}

/*------------------------------------------------------------
	地域の皆様へ
------------------------------------------------------------*/
.guidancelead{
	width: 50%;
	height: auto;
	margin: 50px auto;
}

.fukidashi_ogange{
	color: #ea5413;/*オレンジ*/
	background:url("../imgs/bg_fukidashi_orange.png");
}
.fukidashi_green{
	color: #23ac38;/*グリーン*/
	background:url("../imgs/bg_fukidashi_green.png");
}
.fukidashi{
	width: 100%;
	height: 90px;
	font-size: 1.7em;
	font-weight: bold;
	text-align: center;
	background-repeat: no-repeat;
	background-position: center center;
	display: flex;
	align-items: center;/*天地センター*/
	justify-content: center;/*左右センター*/
}

.nayami_box{
	width: 1200px;
	height: 1100px;
	position: relative;
	margin-bottom: 100px;
}

.nayami_bgcercle{
	width: 530px;
	height: 250px;
	border-radius: 50%;
	background-color: #f9dcc5;/*footer薄オレンジ*/
	text-align: center;
	padding-top: 60px;
	font-size: 1.3em;
	line-height: 1.5em;
	font-weight: bold;
}
.nayami_wspace{
	padding-top: 90px;
}

.nayamibox1{
	width: 530px;
	height: 530px;
	position: absolute;
	top:0;
	right: 50px;
}
.pic_nayami1{
	width: 190px;
	height: 181px;
	margin: -130px 0 0 60px;
}
.nayamibox2{
	width: 530px;
	height: 530px;
	position: absolute;
	top:150px;
	left: 10px;
}
.pic_nayami2{
	width: 110px;
	height: 190px;
	margin: -80px 0 0 200px;
}
.nayamibox3{
	width: 530px;
	height: 530px;
	position: absolute;
	top:300px;
	left: 0px;
}
.pic_nayami3{
	width: 129px;
	height: 190px;
	margin: -110px 0 0 300px;
}
.nayamibox3{
	width: 530px;
	height: 530px;
	position: absolute;
	top:350px;
	left: 650px;
}
.nayamibox4{
	width: 530px;
	height: 250px;
	position: absolute;
	top:570px;
	left: 30px;
}
.pic_nayami4{
	width: 135px;
	height: 219px;
	margin: -230px 0 0 -50px;
}
.nayamibox5{
	width: 530px;
	height: 300px;
	position: absolute;
	top:820px;
	right:180px;
}
.pleasesoudan{
	width: 100%;
	max-width: 1200px;
	height: auto;
	display: flex;
	flex-wrap: wrap;/*一行に収まらない時に複数行に*/	
	align-items: center;/*天地センター*/
	justify-content: center;/*左右センター*/
}
.naruw125{
	width: 126px;
	height: 58px;
}
.soudan{
	font-weight: bold;
	font-size: 40px;
	text-align: center;
	margin-left: 20px;
}

.box_counseling{
	width: 100%;
	max-width: 1200px;
	border-radius: 60px;
	border: solid 5px #f8b62d;
	background-color: #ffffff;
	margin: 0px auto;
	padding: 100px 0px 50px 0px;
	box-sizing: border-box;
}
ul.counseling{
	text-align: center;
	font-size: 1.7em;
	line-height: 1.8em;
	font-weight: bold;
	margin: 50px auto;
	
}
ul.counseling li{
	width: 80%;
	margin: 20px auto;
	padding: 20px;
	border-bottom: solid 4px #f8b62d;
}
.counseling_comentbox{
	width: 100%;
	height: auto;
	display: flex;
	flex-wrap: wrap;/*一行に収まらない時に複数行に*/	
	align-items: center;/*天地センター*/
	justify-content: center;/*左右センター*/
}
.counseling_nikomark{
	width: 145px;
	height: 145px;
}
.counseling_coment{
	font-size: 1.4em;
	margin-left: 20px;
	line-height: 1.8em;
}
.attention_kome{
	font-size: 3em;
	text-align: center;
	margin: 30px 0 15px 0;
}
.attention{
	width: 80%;
	margin: 0 auto;
	text-align: center;
}


/*------------------------------------------------------------
	事業所の皆様へ
------------------------------------------------------------*/
.box_case{
	width: 85%;
	max-width: 1000px;
	height: 200px;
	border-radius: 60px;
	margin: 50px auto;
	font-size: 1.7em;
	line-height: 1.7em;
	font-weight: bold;
	color: #23ac38;/*グリーン*/
	display: flex;
	align-items: center;/*天地センター*/
	padding:0 20px 0 350px;
}
.case1{
	background: url("../imgs/case1.png");
	background-repeat: no-repeat;
	background-color: #d8fccb;	
	background-position: top 35px left 20px;
}
.case2{
	background: url("../imgs/case2.png");
	background-repeat: no-repeat;
	background-color: #d8fccb;	
	background-position: top 35px left 20px;
}
.case3{
	background: url("../imgs/case3.png");
	background-repeat: no-repeat;
	background-color: #d8fccb;	
	background-position: top 35px left 20px;
}
.box_officecontents{
	width: 50%;
	max-width: 580px;
	height: auto;
	min-height: 640px;
	padding: 40px;
	box-sizing: border-box;
	border: solid 5px #acd598;/*薄グリーン*/
	background-color: #ffffff;
	border-radius: 60px;
	margin-bottom: 30px;
	box-sizing: border-box;
}

.pic_office img{
	width: 100%;
	max-width: 500px;
	height: auto;
	max-height: 300px;
	border-radius: 30px;
	margin-bottom: 10px;
}
.officeh3{
	
}

/*------------------------------------------------------------
	プロフィールページ
------------------------------------------------------------*/
.box_ttlmassage{
	width: 100%;
	display: flex;
	justify-content: space-between;
}
.ttl_daihyomassage{
	width: 445px;
	height: 115px;
	margin-left: 160px;
	margin-top: 60px;
}
.nikomark_massage1{
	width: 217px;
	height: 218px;
	animation-iteration-count: 3;
}
.nikomark_massage2{
	width: 238px;
	height: 238px;
	margin-top: -200px;
	animation-iteration-count: 3;
}
.massagebox1,.massagebox2{
	width: 65%;
	max-width: 770px;
	height: auto;
	margin-bottom: 100px;
}
.massagebox1{
	float: right;
}
.massagebox2{
	float: left;
}
.massageh2{
	text-align: left;
	line-height: 50px;
}
.googlemapbpx{
	width: 100%;
	height: 700px;
	margin: 100px 0;
	overflow: hidden;
}


/*------------------------------------------------------------
	問い合わせページ
------------------------------------------------------------*/
.contacttex{
	width: 100%;
	max-width: 900px;
	height: auto;
	margin: 100px auto;
}

/*-------------問い合わせテーブル---------------*/
.formWrap{
	width: 100%;
	max-width: 900px;
	height:auto; 
	margin: 0 auto;
	margin-bottom: 100px;
}
.formTable{
	width: 100%;
	max-width: 900px;
	text-align: left;
	line-height: 4em;
	padding-left: 1em;
	padding-right: 1em;
	box-sizing: border-box;
	border-collapse: separate;  /* 表の線と線の間を空ける */
    border-spacing:0em 2em;     /* 表の線と線の間の幅 */
}

.formTable tr{
	width: 100%;
}
.formTable th{
	width: 40%;
}
.formTable td{
	width: 60%;
	padding-left: 100px;
	vertical-align: middle;
}
#mailform input{
	width: 100% !important;
	height: 3em;
	font-size: 20px;
	border: solid 3px #f2f6da;
	border-radius:5px;
	padding-left: 0.5em;
	line-height: 1.6em;
	width: 100%;
	box-sizing: border-box;
}
#mailform select{
	width: 100% !important;
	height: 3em;
	font-size: 20px;
	border: solid 3px #f2f6da;
	border-radius:5px;
	padding-left: 0.5em;
	line-height: 1.6em;
	width: 100%;
	box-sizing: border-box;
}
	
#mailform textarea{
	width: 100% !important;
	height: 7em;
	font-size: 18px;
	border: solid 3px #f2f6da;
	border-radius:5px;
	padding: 0.5em;
	line-height: 1.4em;
	box-sizing: border-box;
}


#mailform input[type="submit"] {
	width: 100%;
	height: 90px;
	display: flex;
 	justify-content:center;
	margin: 20px auto;
	background-color: #ea5413;/*基準濃いオレンジ*/
	font-weight: bold;
	color: #ffffff;
	text-align: center;
	font-size: 1.4em;
	border-radius: 45px;
	box-sizing: border-box;
	line-height: 90px;
	border: none;
	}	


#mailform input[type="submit"]:hover{
	background-color: #f8b62d;/*薄オレンジ*/
	color: #ea5413;/*基準濃いオレンジ*/	
	transition :0.5s;
}



.formTable td, th {
    vertical-align: middle;  /* 中央揃え */
	padding-left: 0.5em;
	line-height: 3em;
}



.privacypolicy{
	width: 100%;
	max-width: 900px;
	height: 300px;
	overflow: scroll;
	background-color: #f2f6da;/*薄グリーン*/
	border:  solid 2px #23ac38;/*グリーン*/
	padding: 20px;
	margin: 100px auto;
	font-size: 0.9em;
	line-height: 1.3em;
}
.ttl_ppolicy{
	font-size: 1.1em;
	font-weight: bold;
	margin-top: 1em;
	margin-bottom: 0.5em;
}
.list_ppolicy{
	margin: 0.5em;
	padding-left: 1em;
}
.list_ppolicy li{
	list-style:circle;
}
.check_ppolicy{
	width: 300px;
	height: auto;
	margin: 50px auto;
	text-align: center;
	display: flex;
 	justify-content:center;
}
.check_ppolicy p{
		width: 100%;
		text-align: center;
		padding-top: 15px;
	}
#mailform input[type="checkbox"] {

	}	
.btnsendmail{
		margin-top: 20px;
	}


.grecaptcha-badge { visibility: hidden; }



/*------------------------------------------------------------
	問い合わせ完了ページ
------------------------------------------------------------*/

.Thankstexbox{
	width: 1000px;
	height: 1000px;
	padding: 50px;
	margin: 0 auto;
	
	font-size: 1.5em;
	line-height: 2em;
	text-align: center;
}