@charset "UTF-8" ;
/* ボディ */
body
{
	margin: 0 ;		/* スペース */
	padding: 0 ;		/* 余白 */
	font-size: 15px ;	/* 文字サイズ */
	line-height: 1.618 ;	/* 行の高さ */
}

/* スマホだけに適用するCSS */
@media screen and (max-width:479px)
{
	/* ボディ */
	body
	{
		font-size: 13px ;	/* 文字サイズ */
	}
}

/* ヘッダー */
.header
{
	border-bottom: 2px solid #888 ;		/* 枠線 */
	text-align: center ;			/* テキスト、画像の真ん中寄せ */
	padding: 1em 0 ;			/* 上下の余白 */
	margin-bottom: 2em ;			/* 他のブロックとのスペース */
	background: #e8e8e8 ;			/* 背景色(確認用) */
}

/* ロゴ画像を囲むh1 */
.logo-wrapper
{
	margin: 0 ;
	padding: 0 ;
	line-height: 1 ;
}

/* ロゴ画像 */
.logo
{
	width: 400px ;
	height: auto ;
}

/* スマホだけに適用するCSS */
@media screen and (max-width:479px)
{
	/* ロゴ画像 */
	.logo
	{
		width: 250px ;
	}
}
/* h1タグのデザイン設定 */
h0 {
 /* margin: 1.5em 0;*/
  margin: 0em 0;
  padding: 0.5em 0 0.3em 0.5em;
  /*border-left: 10px double #00008B;*/  
  font-size: 130%;
  font-weight: bold;
  color: #1c1b1b;
}
h1 {
 /* margin: 1.5em 0;*/
  margin: 0.5em 0;
  padding: 0..25em 0 0.3em 0.5em;
  /*border-left: 10px double #00008B;*/  
  font-size: 100%;
  font-weight: normal;
  color: #1c1b1b;
}
h2 {
  margin: 0em 1.0em;
  padding: 0.5em 0 0.3em 0,5em;
  /*border-left: 10px double #00008B;*/  
  font-size: 95%;
  font-weight: bold;
  color: #808080;
}
h3 {
  margin: 0em 1.0em;
  padding: 0.5em 0 0.3em 0,5em;
  /*border-left: 10px double #00008B;*/  
  font-size: 105%;
  font-weight: normal;
  color: #1A1A1A;
}
h4 {
 /* margin: 1.5em 0;*/
  margin: 0em 0em 0.0em 0.0em;
  padding: 0.0em 0 0.3em 0.8em;
  /*border-left: 10px double #00008B;*/  
  font-size: 180%;
  font-weight: bold;
  color: #icibib;
}
h5 {
 /* margin: 1.5em 0;*/
  margin: 0em 0;
  padding: 0.1em 0 0.1em 1.3em;
  /*border-left: 10px double #00008B;*/  
  font-size: 90%;
  font-weight: bold;
  color: #4d4d4d;
}
h6 {
  margin: 0em 0.0em;
  padding: 0.0em 0 0.0em 0,0em;
  /*border-left: 10px double #00008B;*/  
  font-size: 120%;
  font-weight: bold;
  color: #1A1A1A;
}/* div center */
.center{
  border: 1px solid #aaa;
  width: 400px;
  text-align: center;
}
/* 入力 */
.cbinput
{
	border:0;
	padding:10px;
	font-size:1.3em;
	font-family:Arial, sans-serif;
	color:#aaa;
	border:solid 1px #ccc;
	margin:0 0 10px;
	width:150px;
}
/* フッター */
.footer
{
	border-top: 2px solid #888 ;		/* 枠線 */
	text-align: center ;			/* テキスト、画像の真ん中寄せ */
	margin-top: 2em ;			/* 他のブロックとのスペース */
	padding: 1em 0 ;			/* 上下の余白 */
	background: #e8e8e8 ;
}

/* 全体(デスクトップPCとスマホ)に適用するCSS */
.wrapper
{
	width: 1000px ;
	margin: 0 auto ;		/* 左右に[auto]を指定することで、真ん中に寄る */
	padding: 0 ;			/* 上下左右の余白を0にしておく */
}

/* スマホだけに適用するCSS */
@media screen and (max-width:479px)
{
	.wrapper
	{
		width: auto ;
		padding: 0 10px ;
	}
}

/* 全体(デスクトップPCとスマホ)に適用するCSS */
.main
{
    width: 800px ;
	padding: 0px 20px 20px 20px ;					/* 上下左右に20pxの余白 */
	/*background-color: #e1e7ed;*/
	border: 1px solid rgba(0,0,0,.1) ;		/* 枠線 */
}
.main2
{
	width: 618px ;
	margin: 40px ;					/* 上下左右に20pxの余白 */
	border: 1px solid rgba(0,0,0,.1) ;		/* 枠線 */
}

.side
{
	width: 320px ;
}

/* スマホだけに適用するCSS */
@media screen and (max-width:479px)
{
	.main
	{
		width: auto ;
		padding: 0 ;		/* 余白 */
		border: none ;		/* 枠線 */
	}

	.side
	{
		width: auto ;
	}
}

/* 全体(デスクトップPCとスマホ)に適用するCSS */
.main
{
	float: left ;		/* 左に寄せる */
}

.side
{
	float: right ;		/* 右に寄せる */
}

/* スマホだけに適用するCSS */
@media screen and (max-width:479px)
{
	.main , .side
	{
		float: none ;
	}
}

.wrapper
{
	overflow: hidden ;
}
table{
	width:100%;
	cursor: pointer;
	cursor: hand;

}
.scroll{
overflow: auto;			/*tableをスクロールさせる*/
white-space: nowrap;	/*tableのセル内にある文字の折り返しを禁止*/
}
.scroll::-webkit-scrollbar{		/*tableにスクロールバーを追加*/
 height: 5px;
}
.scroll::-webkit-scrollbar-track{	/*tableにスクロールバーを追加*/
 background: #F1F1F1;
}
.scroll::-webkit-scrollbar-thumb {	/*tableにスクロールバーを追加*/
 background: #BCBCBC;
}
table.type02 {
	border-collapse: separate;
	border-spacing: 0;
	text-align: left;
	line-height: 1.5;
	border-top: 1px solid #ccc;
	border-left: 1px solid #ccc;
}
table.type02 th {
	width: 100px;
	padding: 10px;
	font-weight: bold;
	vertical-align: top;
	border-right: 1px solid #ccc;
	border-bottom: 1px solid #ccc;
	border-top: 1px solid #fff;
	border-left: 1px solid #fff;
	background: #eee;
}
table.type02 td {
	width: 350px;
	padding: 10px;
	vertical-align: top;
	border-right: 1px solid #ccc;
	border-bottom: 1px solid #ccc;
}
/* スマホだけに適用するCSS */
@media screen and (max-width:479px)
{
	table.type02 th{
		width: 70px;
	}
	table.type02 td {
		width: 250px;
	}
}
.square_btn{
    display: inline-block;
    padding: 0.5em 1em;
    text-decoration: none;
    background: #6a83b7;/*ボタン色#668ad8*/
    color: #FFF;
    border-bottom: solid 4px #44577f;/* 影  #627295*/
    border-radius: 3px;
	cursor: pointer;
	cursor: hand;
}
.square_btn:active {/*ボタンを押したとき*/
    -ms-transform: translateY(4px);
    -webkit-transform: translateY(4px);
    transform: translateY(4px);/*下に動く*/
    box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.2);/*影を小さく*/
    border-bottom: none;
}
.square_btn2 {
    position: relative;
    display: inline-block;
    padding: 0.25em 0.5em;
    text-decoration: none;
    color: #0B0B3B;
    background: #D8D8D8;/*色 03A9F4 FFF*/
    border: solid 1px #6E6E6E;/*線色0f9ada */
    border-radius: 4px;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.2);
    text-shadow: 0 1px 0 rgba(0,0,0,0.2);
	cursor: pointer;
	cursor: hand;
}

.square_btn2:active {/*押したとき*/
    border: solid 1px #03A9F4;
    box-shadow: none;
    text-shadow: none;
}
.square_btn3{
    display: inline-block;
    padding: 1em 1em;
    text-decoration: none;
    background: #6a83b7;/*ボタン色#668ad8*/
    color: #FFF;
    border-bottom: solid 4px #44577f;/* 影  #627295*/
    border-radius: 6px;
	cursor: pointer;
	cursor: hand;
}
.square_btn3:active {/*ボタンを押したとき*/
    -ms-transform: translateY(4px);
    -webkit-transform: translateY(4px);
    transform: translateY(4px);/*下に動く*/
    box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.2);/*影を小さく*/
    border-bottom: none;
}
.yubi {
  cursor : pointer;
}
.dsc_term{
        input[type=date]::-webkit-calendar-picker-indicator {
            /* 好きなだけpx調整 */
            padding: 20px;
        }
}
ul.kankaku li {
margin-bottom: 10px;
}
.page-top {
  position: fixed;
  right: 10px;
  bottom: 10px;
  z-index: 99;
}
input.geomsize2 {
  transform: scale(1.7);
  margin-top:5px;
  margin-left:10px;
}