/* CSS interspace201708 */

/* /////////////////////////////////////////////////////////////// */
/* リセットCSS */
@charset "utf-8";

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre, hr,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend, 
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-style:normal;
	font-weight: normal;
	font-size: 100%;
	vertical-align:bottom;
	border-style: none;
}

input, button, textarea, select {
	margin: 0;
	padding: 0;
	background: none;
	border: none;
	outline: 0;
	border-radius: 0;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

/* Firefox */
input::-moz-focus-inner, button::-moz-focus-inner {
	border: 0;
}

a:focus {
	outline:none;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, main, section {
	display: block;
}

html{
	overflow-y: scroll;
	overflow-x: hidden;
	height: 100%;
}

body {
	word-wrap:break-word;
	overflow-wrap: break-word;
	font-feature-settings: "palt"; /* 日本語自動文字詰め */
}


table {
	word-break:break-all;
}

blockquote, q {
	quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}

*, *:before, *:after {
	box-sizing: border-box;
}

input[type="submit"],
input[type="reset"],
input[type="button"],
button {
	cursor: pointer;
	-webkit-appearance: button;
	*overflow: visible;
}

ol, ul{
	list-style:none;
}

caption, th{
	text-align: left;
}

/* イメージの下の隙間を取る */
img {
  vertical-align: bottom;
}


/* /////////////////////////////////////////////////////////////// */


/* スマートフォンのイメージの可変対策 */
@media screen and (min-width: 0px) and (max-width: 980px) {
	.img100 { width: 100%;}
	.img90 { width: 90%;}
	.img80 { width: 80%;}
	.img75 { width: 75%;}
	.img70 { width: 70%;}
	.img60 { width: 60%;}
	.img50 { width: 50%;}
	.img30 { width: 30%;}
	.img25 { width: 25%;}
	.img20 { width: 20%;}
}


/* PCでは表示しない */
@media print, screen and (min-width: 760px) {
	.pc_hiddin {
		visibility: hidden;
		height: 0px;
		width:  0px;
		overflow:hidden;
		display: block;
	}
}

/* スマートフォンでは表示しない
@media screen and (min-width: 480px) and (max-width: 980px) {
	.smp_hiddin {
		visibility: hidden;
		height: 0px;
		width:  0px;
		overflow:hidden;
		display: block;
	}
}
 */

/* 小解像度スマートフォンでは表示しない */
@media screen and (min-width: 0px) and (max-width: 760px) {
	.smp_hiddin {
		visibility: hidden;
		height: 0px;
		width:  0px;
		overflow:hidden;
		display: block;
	}
}


/* イメージのphoto枠 写真風 */
.photo_frame {
	padding: 8px;
	background-color: #FFFFFF;
	box-shadow: 0 1px 8px -4px rgba(0, 0, 0, 0.7);
}


/*ボックスシャドウ */
.box-shadow {
	-moz-box-shadow: 1px 1px 3px #000;
	-webkit-box-shadow: 1px 1px 3px #000;
	box-shadow: 1px 1px 3px #000;
}



/* box内左右外寄せ */
/* 参考：http://the-zombis.sakura.ne.jp/wp/?p=1564 */

div.box-left {
	text-align: left;
	float: left;
}
div.box-right {
	text-align: right;
}





/* 画像の横のテキストを上下中央に */
/* 参考：http://javascript123.seesaa.net/article/152616392.html */
/* <div class="txt-valign"><img src="/image/a046btn.gif"><span>横のテキスト</span></div> */

.txt-valign *{
  vertical-align : middle;
   }



/* お知らせ用：日付と項目 */
/* <ul id="date_news"><li><a><span>09/10</span>内容</a></li></ul> */

/*
#date_news {
	border-top: dotted #7a716b 3px;
}
*/

#date_news li {
	padding: 5px 0 5px 5em;
	text-indent: -5em;
	border-bottom: dotted #7a716b 3px;
	text-align: left;
}

#date_news li span {
	display:inline-block;
	width:5em;
	text-indent:0;
	text-align: center;
	color:#d7d2d0;
}

#date_news li a {
	text-decoration:none;
	color:#e6e2e1;
}

#date_news li a:hover {
	text-decoration:none;
	color:#ffffff;
}



/* お知らせ用：カテゴリーと項目 */
/* <ul id="cate_news"><li class="info"><span>INFO</span><a>内容</a></li></ul> */
#cate_news {
	width: 100%;
	border-top: dotted #ffffff 1px;
	padding-top: 0px;
}

#cate_news li {
	width: 100%;
	display: block;
	border-bottom: dotted #ffffff 1px;
	padding-top: 5px;
	margin-bottom: 8px;
}

#cate_news li a {
	overflow: auto;
	line-height: 24px;
}

#cate_news a:link { color: #4f472f; text-decoration: none; }
#cate_news a:visited { color: #4f472f; text-decoration: none; }
#cate_news a:active { color: #ffffff; text-decoration: none; }
#cate_news a:hover { color: #ffffff; text-decoration: none; }

#cate_news li p {
	display: block;
	overflow: auto;
}

#cate_news li span {
	display: block;
	width: 64px;
	line-height: 20px;
	font-family: Sen, sans-serif;
	text-align: center;
	color: #ffffff;
	font-size: 0.7em;
	float: left;
	padding: 1px 0 0 0;
	margin: 3px 10px 5px 0;
	border-radius:5px;
}

/* 左アイコンの色 */
#cate_news .info span {
	background-color: #e8340c;
}
#cate_news .event span {
	background-color: #7e8a59;
}
#cate_news .works span {
	background-color: #7c5c87;
}
#cate_news .lessons span {
	background-color: #4a9299;
}



/* 2行目以降の行頭をインデント */
.kome {
	padding-left: 1em;
	text-indent: -1em;
}
.kome2 {
	padding-left: 2em;
	text-indent: -2em;
}


/****　単行・複数行 均等配分 http://coliss.com/articles/build-websites/operation/css/css3-flexbox-properties-by-scotch.html
<ul class="flex flex-list">
<li></li>
<li></li>
</ul>
	.flex-box {
		width:49%;
		margin:0 2% 20px 0;
	}
	.flex-box:nth-child(2n) {
		margin:0 0 20px 0;
	}
*****/
/*　全体設定　*/
.flex {
	text-align: justify;
	text-justify: inter-ideograph;
}

.flex img {
	width: 100%;
}

/*　複数左寄せ　*/
.flex-list {
	width: 100%;
	display: flex;
	display: -webkit-flex; /* safari（PC）用 */
	flex-wrap: wrap; /* これが無ければboxの指定を無視して単行で表示 */
	-webkit-flex-wrap: wrap; /* safari（PC）用 */
}
/*　一列表示　*/
.flex-list-flat {
	display: flex;
	display: -webkit-flex; /* safari（PC）用 */
	justify-content: space-between; /* これが無ければboxは左寄せに配置 */
	-webkit-justify-content: space-between; /* safari（PC）用 */
}



/****　画像トリミング*****/
.trimming img {
	object-fit: cover;
	width: 100%;
	height: 200px;
    }



/****　地図（マイマップ）装飾　*****/
.mymap {
    overflow: hidden;
}

.mymap iframe {
    /* margin-top: -55px; マイマップの上のバーが出る場合 */
    margin-left: -2px;
}
/* 装飾(ほんのりグレースール→マウスオーバーでゆっくり普通) */
.mymap iframe,
.mymap object,
.mymap embed {
	-webkit-filter: grayscale(60%);
	-moz-filter: grayscale(60%);
	-ms-filter: grayscale(60%);
	-o-filter: grayscale(60%);
	filter: grayscale(60%);
	-webkit-transition: all 0.7s ease;
	-moz-transition: all 0.7s ease;
	-o-transition: all 0.7s ease;
	transition: all  0.7s ease;
}
.mymap iframe:hover,
.mymap object:hover,
.mymap embed:hover {
	-webkit-filter: grayscale(0%);
	-moz-filter: grayscale(0%);
	-ms-filter: grayscale(0%);
	-o-filter: grayscale(0%);
	filter: grayscale(0%);
}


/**** 埋め込みYoutubeレスポンシブ ****/
/* 参考：https://design.webclips.jp/youtube-movie-size/ */
/* <div style="max-width: 500px; margin: 0 auto;"><div class="movie-wrap"><iframe></iframe></div></div> */
/* ↑PC表示の際の最大値を外側のDIVで決める↑ */

.movie-wrap {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}
 
.movie-wrap iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
	border-radius:10px;
}



/* リンク設定*********************************************/



/* PCでは電話をかけない<a href="tel:00000000000">000-0000-0000</a> */
@media (min-width: 751px){
		a[href*="tel:"]{
		pointer-events: none;
		cursor: default;
		text-decoration: none;
	}
}

/* マウスオーバーで左からラインが出る */
.line_link {
	margin: 0;
	padding: 0;
	position: relative;
	display: inline-block;
	transition: .3s;
	line-height: 1.5;
}
.line_link::after {
	position: absolute;
	bottom: 0;
	left: 0;
	content: '';
	width: 0;
	height: 1px;
	background-color: #c0c0c0;
	transition: .3s;
}
.line_link:hover::after {
	width: 100%;
}



/* 外部リンク自動添付：アイコンフォント
a[target="_blank"]:after {
	font-family: 'Font Awesome 5 Free';
	content: '\f35d';
	font-size: 1em;
	margin: 0 5px 0 5px;
	color: #787878;
	font-weight : 900;
} */


/* 外部リンク用：アイコンフォント */
.newW:after {
	font-family: 'Font Awesome 5 Free';
	content: '\f35d';
	font-size: 1em;
	margin: 0 5px 0 5px;
	color: #87878;
	font-weight : 900;
}

/* PDF用：アイコンフォント */
.pdf:after {
	font-family: 'Font Awesome 5 Free';
	content: '\f1c1';
	font-size: 1em;
	margin: 0 5px 0 5px;
	color: #d31e28;
	font-weight : 900;
}

/* 頭に矢印：アイコンフォント */
.ya:before {
	font-family: 'Font Awesome 5 Free';
	content: '\f105';
	font-size: 1em;
	margin: 0 5px 0 0;
	/* color: #2f95bb; */
	font-weight : 900;
}

/* 後ろに矢印：アイコンフォント */
.ya_migi:after {
	font-family: 'Font Awesome 5 Free';
	content: '\f105';
	font-size: 1em;
	margin: 0 0 0 5px;
	/* color: #2f95bb; */
	font-weight : 900;
}





/* 背景画像マウスオーバーhttp://webfeelfree.com/mouseover-css-hover/ <a href="#" class="haikei">ボタン</a> */
.haikei{
	background-size:100% auto;/*この場合は高さが自動設定*/
	background-size:auto 100%;/*この場合は幅が自動設定*/
	background: url(デフォルトで表示させたい背景画像のURL) no-repeat;
}
.haikei:hover{
	background: url(マウスオーバーした時に表示させたい背景画像のURL) no-repeat;
}

/* マウスオーバーしたら画像拡大
.transform li {
	overflow: hidden;
}
.transform img {
	display: block;
	transition-duration: 0.5s;
}
.transform img:hover {
	transform: scale(1.2,1.2);
	transition-duration: 0.5s;
}
 */

/* マウスオーバーしたらマスク＋キャプション */
.transform1 li {
	display: block;
	position:relative;	/* 相対位置指定 */
	overflow:hidden;
}
.transform1 li .caption {
	position:absolute;	/* 絶対位置指定 */
	bottom:0;
	left:0;
	opacity:0;	/* マスクを表示しない */
	width: 100%;
	padding:0 0 10px 10px;
	color:#fff;
}
.transform1 li:hover .caption {
	opacity:1;	/* マスクを表示する */
}


/* マウスオーバーしたらグレーからカラーへ */
.transform2 img {
	-webkit-filter: grayscale(100%);
	filter: grayscale(100%);
	-webkit-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
}
.transform2 :hover img {
	-webkit-filter: grayscale(0);
	filter: grayscale(0);
	filter: alpha(opacity=80);
	opacity:0.8;
}

/* マウスオーバーしたら色つき */
.transform3 a {
	display: block;
	background: #0f96b3;
	margin: 0;
	padding: 0;
}

.transform3 :hover img {
	filter: alpha(opacity=70);
	opacity:0.7;
	-webkit-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
}





/* 角丸リンクボタン */
a.link_btn {
	font-weight: normal;
	text-decoration:none;
	display:inline-block;
	text-align:center;
	padding:5px 15px 3px 15px;
	color: #3c3833;
	background-color:#dddbd7;
	border-radius:5px; /*  */
	margin: 5px;
}
a.link_btn:link {
	color: #3c3833;
}
a.link_btn:visited {
	color: #3c3833;
}
a.link_btn:active {
	color: #ffffff;
	background-color:#34302e;
	/* filter: alpha(opacity=50); */
	/* opacity:0.5; */
}
a.link_btn:hover {
	color: #ffffff;
	background-color:#34302e;
	/* filter: alpha(opacity=50); */
	/* opacity:0.5; */
}

/* 角丸リンクボタン2（リンク準備中） */
.link_btn2 {
	font-weight: normal;
	text-decoration:none;
	display:inline-block;
	text-align:center;
	padding:5px 15px 3px 15px;
	color: #c8c8c8;
	background-color:#8f8f8f;
	border-radius:5px;
	margin: 5px;
	cursor: default
}

/* 
.link_btn2:link {
	color: #a7a7a7;
}
.link_btn2:visited {
	color: #a7a7a7;
}
.link_btn2:active {
	color: #a7a7a7;
	background-color:#afafaf;
	/* filter: alpha(opacity=50); */
	/* opacity:0.5; */
}
.link_btn2:hover {
	color: #a7a7a7;
	background-color:#afafaf;
	/* filter: alpha(opacity=50); */
	/* opacity:0.5; */
}



/* 画像リンク：フチつき */
a.img-colorlink:link img {
	padding: 3px;
	border-top: solid #6c9829 1px;
	border-right: solid #6c9829 1px;
	border-bottom: solid #6c9829 1px;
	border-left: solid #6c9829 1px;
	background-color: #ffffff;
}
a.img-colorlink:visited img {
	padding: 3px;
	border-top: solid #6c9829 1px;
	border-right: solid #6c9829 1px;
	border-bottom: solid #6c9829 1px;
	border-left: solid #6c9829 1px;
	background-color: #ffffff;
}
a.img-colorlink:active img {
	padding: 3px;
	border-top: solid #99ce4a 1px;
	border-right: solid #99ce4a 1px;
	border-bottom: solid #99ce4a 1px;
	border-left: solid #99ce4a 1px;
	filter: alpha(opacity=80);
	opacity:0.8;
}
a.img-colorlink:hover img {
	padding: 3px;
	border-top: solid #99ce4a 1px;
	border-right: solid #99ce4a 1px;
	border-bottom: solid #99ce4a 1px;
	border-left: solid #99ce4a 1px;
	filter: alpha(opacity=80);
	opacity:0.8;
}



/* 位置指定*********************************************/

.left {
	text-align: left;
}

.right {
	text-align: right;
}


.center {
	text-align: center;
	margin-left: auto;
	margin-right: auto;
	width: 100%;
}

.kinto {
	text-align: justify; /* 両端揃え */
	text-justify: inter-ideograph; /* 両端揃えの種類 */
}

/* 回り込みクリア */
.clear {
	clear: both;
	width: 0;
	height: 0;
	text-indent: -1500px;
	visibility: hidden;
	overflow:hidden;
}




/* line設定*********************************************/
hr {
	width: 100%;
	border-top: dotted #dddad7 4px;
	margin-top: 12px;
	margin-bottom: 12px;

}

.dot {
	width: 100%;
	height: 1px;
	border-bottom: dotted #c5bb9a 1px;
	font-size: 0px;
	line-height: 0px;
	color: #ffffff;
	text-indent: -1500px;
	/* 文字がはみ出た場合：非表示 */
	overflow:hidden;
	clear: both;
}

/* 表*********************************************/

table { 
	border-collapse: collapse;
	border-spacing: 0;
	margin: 0;
	padding: 0;
	width: 100%;
	/* border-top: solid #e6e3e3 1px; 表の上にも線を入れる場合 */
}

/* 表の上の線を入れる場合
.table-line { 
	border-top: solid #e6e3e3 1px;
}
 */

.table-auto { 
	width: auto;
	margin-left: auto;
	margin-right: auto;
}


th {
	text-align: left;
	vertical-align: middle;
	font-weight: normal;
	color: #a89f9d;
	white-space: nowrap;
	border-bottom: solid #cccac4 1px;
	padding: 5px;
}

.th-dark th {
	text-align: center;
	vertical-align: middle;
	font-weight: normal;
	white-space: nowrap;
	border-bottom: solid #cccac4 1px;
	padding: 5px;
	color: #2b2b2b;
}

td {
	text-align: left;
	vertical-align: top;
	border-bottom: solid #cccac4 1px;
	padding: 5px;
}

.td-center {
	text-align: center;
	vertical-align: middle;
}

.nowrap {
	white-space: nowrap;
}

/* 透明テーブル */
.table_noline table { 
	border: 0;
}
.table_noline th { 
	background-color: transparent;
	border: 0;
}
.table_noline td { 
	background-color: transparent;
	border: 0;
}


/* テーブル風<dl><dt></dt><dd></dd></dl> */

dl {
	/* dlの背景色をdt用に使う。区切り線はdtの上部に持たせる */
	// background-color : #d7d7d7;
	/* dlの上部線はなくし，dtとddの上部線をdlの上部線のように見せる */
	border-width : 0;
	// border-style : solid;
	// border-color : #4d4d4d;
	width  : 100%;
}
 
dt {
	float : left;
	clear : both;
	width : 20%;
	/* 上線のみ表示 */
	border-width : 0;
	// border-style : solid;
	// border-color : #4d4d4d;
	// font-weight : bold;
	padding : 5px;
}
 
dd {
	/* dtの幅だけ横にずらす */
	margin-left : 20%;
	/* dlやdtとは異なった背景色を使用 */
	// background-color : #eeeeee;
	/* 上線と，dt・ddの左右間の区切り */
	border-width : 0; 
	// border-style : solid;
	// border-color : #4d4d4d;
	vertical-align: middle;
	padding : 5px;
}

dd:after {
	content: "";
	clear: both;
	height: 0;
	display: block;
	visibility: hidden;
}


/* ボックス設定*********************************************/

.m_3 {
	margin:3px;
}

.m_5 {
	margin:5px;
}

.m_8 {
	margin:8px;
}

.m_10 {
	margin:10px;
}

.m_15 {
	margin:15px;
}

.p_5 {
	padding:5px;
}

.p_10 {
	padding:10px;
}

.p_15 {
	padding:15px;
}

.p_10 {
	padding:10px;
}

.pb_30 {
	padding-bottom:30px;
}

.mt_2 {
	margin-top:2px;
}

.mt_3 {
	margin-top:3px;
}

.mt_5 {
	margin-top:5px;
}

.mt_8 {
	margin-top:8px;
}

.mt_10 {
	margin-top:10px;
}

.mt_15 {
	margin-top:15px;
}


.mt_20 {
	margin-top:20px;
}

.mt_30 {
	margin-top:30px;
}

.mt_40 {
	margin-top:40px;
}

.mt_50 {
	margin-top:50px;
}

.mt_100 {
	margin-top:100px;
}

.mtl_5 {
	margin-top:5px;
	margin-left:5px;
}

.mtl_10 {
	margin-top:10px;
	margin-left:10px;
}

.mtl_15 {
	margin-top:15px;
	margin-left:15px;
}

.mb_5 {
	margin-bottom:5px;
}

.mb_8 {
	margin-bottom:8px;
}

.mb_10 {
	margin-bottom:10px;
}

.mb_15 {
	margin-bottom:15px;
}

.mb_20 {
	margin-bottom:20px;
}

.mb_30 {
	margin-bottom:30px;
}

.mb_40 {
	margin-bottom:40px;
}

.mb_50 {
	margin-bottom:50px;
}

.mb_100 {
	margin-bottom:100px;
}

.ml_1 {
	margin-left:1px;
}

.ml_3 {
	margin-left:3px;
}

.ml_5 {
	margin-left:5px;
}

.ml_7 {
	margin-left:7px;
}


.ml_8 {
	margin-left:8px;
}

.ml_10 {
	margin-left:10px;
}

.mbl_10 {
	margin-left:10px;
	margin-bottom:10px;
}

.ml_15 {
	margin-left:15px;
}

.ml_20 {
	margin-left:20px;
}

.mr_1 {
	margin-right:1px;
}

.mr_3 {
	margin-right:3px;
}

.mr_4 {
	margin-right:4px;
}

.mr_5 {
	margin-right:5px;
}

.mr_8 {
	margin-right:8px;
}

.mr_10 {
	margin-right:10px;
}

.mr_11 {
	margin-right:11px;
}

.mr_20 {
	margin-right:20px;
}
.mbr_5 {
	margin-bottom:5px;
	margin-right:5px;
}

.mbr_10 {
	margin-bottom:10px;
	margin-right:10px;
}

.mr_15 {
	margin-right:15px;
}

.mr_20 {
	margin-right:20px;
}

.mtr_5 {
	margin-top:5px;
	margin-right:5px;
}

.mtr_10 {
	margin-top:10px;
	margin-right:10px;
}

.mtr_3 {
	margin-top:3px;
	margin-right:3px;
}


.mlr_3 {
	margin-left:3px;
	margin-right:3px;
}
.mlr_5 {
	margin-left:5px;
	margin-right:5px;
}

.mtlr_5 {
	margin-top:5px;
	margin-left:5px;
	margin-right:5px;
}

.mlr_8 {
	margin-left:8px;
	margin-right:8px;
}

.mlr_10 {
	margin-left:10px;
	margin-right:10px;
}

.mlr_15 {
	margin-left:15px;
	margin-right:15px;
}

.mtb_5 {
	margin-top:5px;
	margin-bottom:5px;
}


.mtb_10 {
	margin-top:10px;
	margin-bottom:10px;
}

.mtb_15 {
	margin-top:15px;
	margin-bottom:15px;
}

.mtb_20 {
	margin-top:20px;
	margin-bottom:20px;
}

.mtb_30 {
	margin-top:30px;
	margin-bottom:30px;
}

.mtb_40 {
	margin-top:40px;
	margin-bottom:40px;
}

.mtb_50 {
	margin-top:50px;
	margin-bottom:50px;
}

.mtlb_5 {
	margin-left:5px;
	margin-bottom:5px;
	margin-top:5px;
}

.pb_8 {
	padding-bottom: 8px;
}


.ptb_20 {
	padding-top:20px;
	padding-bottom: 20px;
}


/* 入力フォーム*********************************************/
.input_txt {
	width: 90%;
	border: solid #c7c2b6 1px;
	background-color:#ffffff;
	padding: 3px;
	font-family: メイリオ, Meiryo, 游ゴシック体, 'Yu Gothic', YuGothic, 'ヒラギノ角ゴシック Pro', 'Hiragino Kaku Gothic Pro', Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
	font-size: 1.1em;
}

.input_txt_free {
	width: auto;
	border: solid #c7c2b6 1px;
	background-color:#ffffff;
	padding: 3px;
	font-family: メイリオ, Meiryo, 游ゴシック体, 'Yu Gothic', YuGothic, 'ヒラギノ角ゴシック Pro', 'Hiragino Kaku Gothic Pro', Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
	font-size: 1.1em;
}

textarea {
	width: 90%;
	border: solid #c7c2b6 1px;
	background-color:#ffffff;
	height: 80px;
	margin-top: 3px;
	margin-bottom: 3px;
	overflow-x: hidden;
	font-family: メイリオ, Meiryo, 游ゴシック体, 'Yu Gothic', YuGothic, 'ヒラギノ角ゴシック Pro', 'Hiragino Kaku Gothic Pro', Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
	font-size: 1.1em;
}

select { 
	padding: 3px;
	border: solid #c7c2b6 1px;
	background-color:#ffffff;
	font-family: メイリオ, Meiryo, 游ゴシック体, 'Yu Gothic', YuGothic, 'ヒラギノ角ゴシック Pro', 'Hiragino Kaku Gothic Pro', Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
	font-size: 1.1em;
}

date { 
	padding: 3px;
	border: solid #c7c2b6 1px;
	background-color:#ffffff;
	font-family: メイリオ, Meiryo, 游ゴシック体, 'Yu Gothic', YuGothic, 'ヒラギノ角ゴシック Pro', 'Hiragino Kaku Gothic Pro', Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
	font-size: 1.1em;
}

form input[type=radio], input[type=checkbox]{ 
	font-family: メイリオ, Meiryo, 游ゴシック体, 'Yu Gothic', YuGothic, 'ヒラギノ角ゴシック Pro', 'Hiragino Kaku Gothic Pro', Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
	font-size: 1.1em;
	margin: 0;
	padding: 5px;
	background-color:#ffffff;
	border: 0;
	outline: solid #c7c2b6 1px;
}

form input[type=radio]{ 
	-webkit-appearance: radio-button;
	-moz-appearance: radio-buttonl;
	appearance: radio-button;
}

form input[type=checkbox]{ 
	-webkit-appearance: checkbox;
	-moz-appearance: checkbox;
	appearance: checkbox;
}

form input[type=date]{ 
	-webkit-appearance:button;
	-moz-appearance: button;
	appearance: button;
}

/* 角丸テキストボタン <button type="submit" class="form_btn" value="送信内容を確認">送信内容を確認</button><input type="button" class="form_btn" value="そだついえ。ホーム" onClick="location.href='http://www.sodatsu-ie.jp/'"><input type="button" class="form_btn" value="前のページに戻る" onClick="history.go(-1);"> */

.form_btn {
	cursor: pointer;
	/*  width: 100%; */
	line-height: 1em;
	font-size: 1em;;
	font-weight: normal;
	padding: 12px 20px 10px 20px;
	margin: 10px 0px 10px 0px;
	background-color:#635b59;
	/*  border-radius:5px; */
	color: #ffffff;
	border-style: none;
	font-family: メイリオ, Meiryo, 游ゴシック体, 'Yu Gothic', YuGothic, 'ヒラギノ角ゴシック Pro', 'Hiragino Kaku Gothic Pro', Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
}
.form_btn:link {
	text-decoration: none;
	color: #ffffff;
	background-color:#635b59;
}
.form_btn:hover {
	color: #ffffff;
	background-color: #000000;
	-webkit-transition: 0.3s ease-in-out;
	-moz-transition: 0.3s ease-in-out;
	-o-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
}
.form_btn:active {
	color: #ffffff;
	background-color: #000000;
}
.form_btn:visited {
	color: #ffffff;
	background-color:#000000;
}

input:focus, select:focus, checkbox:focus, textarea:focus {
background-color: #dae4b1;
}