@charset "utf-8";

/*PC・タブレット・スマホ共通設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/

/*全体の設定
---------------------------------------------------------------------------*/
body {
	margin: 0px;padding: 0px;
	color: #666;	/*全体の文字色*/
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;	/*フォント種類*/
	font-size: 15px;	/*文字サイズ*/
	line-height: 2;		/*行間*/
	-webkit-text-size-adjust: none;
	background: #fff;	/*背景色（古いブラウザ用）*/
}
h1,h2,h3,h4,h5,p,ul,ol,li,dl,dt,dd,form,figure,form {margin: 0px;padding: 0px;font-size: 100%;}
ul {list-style-type: none;}
ol {padding-left: 40px;padding-bottom: 15px;}
img {border: none;max-width: 100%;height: auto;vertical-align: middle;}
table {border-collapse:collapse;font-size: 100%;border-spacing: 0;}
iframe {width: 100%;}

/*リンク（全般）設定
---------------------------------------------------------------------------*/
a {
	color: #666;	/*リンクテキストの色*/
	-webkit-transition: 0.5s;	/*マウスオン時の移り変わるまでの時間設定。0.5秒。*/
	transition: 0.5s;			/*同上*/
}
a:hover {
	color: #0075c2;				/*マウスオン時の文字色*/
	text-decoration: none;		/*マウスオン時にリンクの下線を消す設定*/
}

/*ヘッダー（ロゴが入った最上段のブロック）
---------------------------------------------------------------------------*/
header {
	background: #fff;	/*背景色*/
}
header .inner {
	height: 100px;	/*ヘッダーの高さ*/
	position: relative;
}
/*ロゴ画像*/
#logo img {
	width: 80px;	/*画像幅*/
	position: absolute;
	left: 3px;
	top: 3px;
}
#title {
	position: absolute;
	left: 100px;
	top: 14px;
	font-size: 24px;
	line-height: 1.4em;
}
#title a{
	text-decoration: none;
}
#title-en {
	position: absolute;
	left: 140px;
	top: 50px;
	font-size: 18px;
	line-height: 1.2em;
}
#title-en a{
	text-decoration: none;
}
/*ヘッダー右側のアイコン類*/
#h-nav-l {
	float: left;
	padding-top: 5px;
	font-size: 14px;
}
/*
/*ヘッダー右側のアイコン類（１個あたり）*/
#h-nav-l li {
	float: left;
	margin-left: 0.5em;	/*アイコン間の余白*/
}

/*ヘッダー右側のアイコン類*/
#h-nav-r {
	float: right;
	padding-top: 3px;
	right: 3%;	/*右から3%の場所に配置*/
	/*top: 34px;	上から34pxの場所に配置*/
	font-size: 14px;
}
/*
/*ヘッダー右側のアイコン類（１個あたり）*/
#h-nav-r li {
	float: left;
	margin-left: 16px;	/*アイコン間の余白*/
}
#h-nav-r li::before {
	font-family: "Font Awesome 5 Free";
	content: '\f138';
	padding: 0 .3em 0 0;
	color: #0075c2;
	font-weight: bold;
}
/*ヘッダー右側のアイコン類（画像）*/
#h-nav-r li a {
	padding-top: 5px;
	border-radius: 4px;	/*角丸のサイズ。50%にすると正円になる。*/
	text-decoration: none;
}



/*メインメニュー
---------------------------------------------------------------------------*/
/*メニューブロックの設定*/
#menubar {
	background: #0075c2;	/*背景色*/
	overflow: hidden;
}
/*メニュー１個あたりの設定*/
#menubar li {
	float: left;
	margin-left: 3%;
	overflow: hidden;
	letter-spacing: 0.2em;
}
#menubar li a {
	text-decoration: none;
	display: block;
	color: #fff;	/*文字色*/
	line-height: 46px;	/*高さ。ここを変える場合、fixmenu.cssの「body.is-fixed header」のサイズも変える。*/
	padding-top: 4px;	/*上にあける余白。下の「border-bottom」のサイズと合わせる。*/
	padding-left: 0.2em;	/*上のletter-spacingの数字と揃える*/
}
/*下線のアニメーション設定*/
#menubar li::after {
	-webkit-transition: 0.5s;transition: 0.5s;	/*0.5秒かけてアニメーションを実行する。*/
	content: "";
	display: block;
	border-bottom: 4px solid #fff034;	/*下線の幅、線種、色*/
	position: relative;left: 0px;bottom: -4px;	/*bottomのサイズは上のborder-bottomの数字と合わせる。マイナス記号は残したまま。*/
}
#menubar li:hover::after,#menubar li.current::after {
	bottom: 0px;
}
/*小さい端末用(画面幅800px以下)メニューを表示させない*/
#menubar-s {
	display: none;
}
/*３本バーアイコンを表示させない*/
#menubar_hdr {
	display: none;
}

/*コンテンツ
---------------------------------------------------------------------------*/
#menubar-sub {
	clear: both;
	padding-right: 5px;
	padding-left: 5px;
}

#topimg-area{
	clear: both;
	padding-top: 10px;
	margin-left: 10%;
	margin-right: 10%;
}

#contents {
	clear: both;
	margin: 3%;
}

/*メインコンテンツ
---------------------------------------------------------------------------*/
/*メインコンテンツブロック*/
#main {
	float: right;	/*右に回り込み*/
	width: 80%;		/*ボックス幅*/
}
/*メインコンテンツブロック（１カラム時）*/
.c1 #main,
.c2 #main {
	float: none;
	width: 100%;
}
/*メインコンテンツブロック（２カラム時）*/
.c2 #sub1 {
	float: left;
	width: 48%;
}
.c2 #sub2 {
	float: right;
	width: 48%;
}

/*メインコンテンツのh2タグ*/
#main h2{
	clear: both;
	font-size: 18px;
	margin-bottom: 20px;
	padding: 8px 20px;	/*上下、左右への余白*/
	background: #4496d3;/*#68a4d9; *rgba(1, 136, 86, 0.75);/*#0075c2;	/*背景色*/
	color: #fff;/*文字色*/
	font-weight: normal;
}
#main h2::first-letter{
	border-left: 3px solid #fff;	/*左側のアクセントラインの幅、線種、色*/
	padding-left: 10px;
}
/*メインコンテンツのh3タグ*/
#main h3,
#sub1 h3,
#sub2 h3 {
	clear: both;
	margin-bottom: 20px;
	padding: 6px 20px;	/*上下、左右への余白*/
	border: 1px solid #ccc;	/*枠線の幅、線種、色*/
	background: #fff;	/*背景色*/
}
#main h3::first-letter,
#sub1 h3::first-letter,
#sub2 h3::first-letter{
	border-left: 3px solid #4496d3;/*rgba(1, 136, 86, 0.75);/*#0075c2;	/*左側のアクセントラインの幅、線種、色*/
	padding-left: 10px;
}
#main h3.openclose-title{
	clear: both;
	cursor: pointer;
	margin-bottom: 10px;
	padding: 6px 20px;	/*上下、左右への余白*/
	border: 1px solid #4496d3;	/*枠線の幅、線種、色*/
	background: #fff;	/*背景色*/
}
#main h3.openclose-title::first-letter{
	border-width: 0px;
	padding-left: 0px;
}
#main h4.openclose-title{
	clear: both;
	cursor: pointer;
	margin-left: 2em;
	margin-right: 2em;
	margin-bottom: 10px;
	padding: 6px 20px;	/*上下、左右への余白*/
	border: 1px dotted #ccc;	/*枠線の幅、線種、色*/
	background: #fff;	/*背景色*/
}
#main h4.openclose-title::first-letter{
	padding-left: 0;
}

/*メインコンテンツの段落タグ*/
#main p,
#sub1 p,
#sub2 p{
	padding: 0px 20px 20px;	/*上、左右、下への余白*/
}
#main h2 + p,
#main h3 + p,
#sub1 h2 + p,
#sub1 h3 + p,
#sub2 h2 + p,
#sub2 h3 + p{
	margin-top: -10px;
}

#main ul.paramlist{
	margin-top: -10px;
	margin-left: 2em;
	margin-bottom: 1em;
	padding: 0px 10px 5px 30px;
	color: #3c3c3c;
	display: table;
}
#main ul.paramlist li{
	display: table-row;
	line-height: 1.4em;
}
#main ul.paramlist li::before {
	display: table-cell;
	font-family: "Font Awesome 5 Free";
	content: '\f02e';
	padding: .8em .3em 0 0;
	color: #0068b7;/* #00947a; */
	font-weight: 700;
}

#main ul.itemlist{
	margin-top: -10px;
	margin-left: 3em;
	padding: 0px 10px 5px 30px;
	color: #3c3c3c;
	font-weight: 700;
}
#main ul.itemlist li::before {
	display: block;
	float: left;	/*右側に配置*/
	font-family: "Font Awesome 5 Free";
	content: '\f111';
	padding: 0 .3em 0 0;
}

#main ul.downloadlist{
	margin-top: -10px;
	margin-left: 3em;
	padding: 0px 10px 5px 30px;
	color: #3c3c3c;
}
#main ul.downloadlist a{
	text-decoration: none;
}
#main ul.downloadlist li::before {
	display: block;
	float: left;	/*右側に配置*/
	font-family: "Font Awesome 5 Free";
	content: '\f019';
	font-weight: 700;
	padding: 0 .3em 0 0;
}

#main .centerblock{
	display: block;
	text-align: center;
	font-weight: bold;
	margin-bottom: 20px;
}
#main .centerblock a.btn {
	padding: 8px 20px;
	background: #0075c2;/*#4496d3;/*rgba(1, 136, 86, 0.75);*/
	border: 1px solid #0075c2;	/*枠線の幅、線種、色*/
	text-decoration: none;
	color: #FFF;			/*文字色*/
	border-radius: 5px;	/*角丸のサイズ。50%にすると正円になる。*/
}
#main .centerblock a.btn:hover {
	color: #0075c2;			/*文字色*/
	background: #ffffff; /*#ff8e8e;	/*背景色*/
}

#main ul.orderlist{
	margin: 0px 3em 0px 3em;
	padding: 5px 10px 5px 30px;
	color: #3c3c3c;
}
#main ul.orderlist li::before {
	display: block;
	float: left;	/*右側に配置*/
	content: '';
	padding: 0 .3em 0 0;
}

#main .pricelist dl {
	padding-left: 5em;
	margin-bottom: 15px;
}
#main .pricelist dt {
	width: 400px;
	float : left;
	white-space: nowrap;
}
#main .pricelist dt::before {
	font-family: "Font Awesome 5 Free";
	content: '\f138';
	padding: 0 .4em 0 0;
	color: #0068b7; /*#008080;*/
	font-weight: bold;
}
#main .pricelist dd {
	width: 500px;
	font-weight: bold;
	display: block;
	text-align: right;
	line-height: 2.0em;
	margin: 5px;
	white-space: nowrap;
}

#main .pricelist dt.genome::before {
	font-family: "Font Awesome 5 Free";
	content: '\f471';
	padding: 0 .4em 0 0;
	color: #0068b7; /* #008080;*/
	font-weight: bold;
}

#main section.memlist{
	color: #3c3c3c;
}
#main section.memlist h4{
	margin-left: 30px;
	margin-right: 20px;
	margin-bottom: 5px;
	padding: 10px 10px 5px 10px;
	/*border-left: 5px double #7fbfff;*/
	/*border-bottom: 1px solid #7fbfff;/*#0075c2;*/
	line-height: 1.6em;
	color: #0068b7;/*#043c78;/*#0068b7;*/
}
#main section.memlist h4::before {
	font-family: "Font Awesome 5 Free";
	content: '\f06d';/*'\f559';/*'\f0a3';*/
	padding: 0 .4em 0 0;
	color: #0068b7;/*#043c78;/*#7fbfff;/*#043c78;/*#0068b7;*/
	font-weight: bold;
	font-size: 20px;
}

#main section.memlist dl {
	padding-left: 5em;
	margin-bottom: 20px;
}
#main section.memlist dt {
	width: 120px;
	float : left;
	white-space: nowrap;
}
#main section.memlist dd {
	width: 200px;
	display: block;
	line-height: 2.0em;
	white-space: nowrap;
}

#main section.faq{
	color: #3c3c3c;
}
#main section.faq h5{
	margin-left: 20px;
	margin-right: 20px;
	margin-bottom: 5px;
	padding: 10px 10px 5px 30px;
	line-height: 1.6em;
	color: #0068b7;
}
#main section.faq h5::before {
	font-family: "Font Awesome 5 Free";
	content: '\f0da';
	padding: 0 .4em 0 0;
	color: #0068b7;
	font-weight: bold;
	font-size: 20px;
}

#main section.faq p{
	padding-left: 60px;
	padding-right: 40px;
	padding-bottom: 5px;
}
#main section.faq ul{
	padding-left: 80px;
	padding-right: 40px;
}

#main.service section{
	margin-left: 10px;
	margin-right: 10px;
	margin-bottom: 10px;
	padding: 5px;
}
#main.service p{
	line-height: 1.4em;
}
#main.service .service-item{
	margin-left: 8%;
	margin-right: 5%;
	text-indent: -2em;
	line-height: 1.6em;
	padding-bottom: 10px;
}
#main.service .service-item:first-line {
    font-weight: bold;
}
#main.service .link-title{
	/*cursor: pointer;*/
}
#main.service .service-item p{
	padding: 5px 10px 5px 0px;
	text-indent: 0px;
}
#main.service .service-item img{
	padding: 10px;
}

#main.service .service-item2{
	margin-left: 5%;
	margin-right: 5%;
	text-indent: -2em;
	line-height: 1.6em;
	padding-bottom: 10px;
}
#main.service .service-item2:first-line {
    font-weight: bold;
}
#main.service .service-item2 p{
	padding: 5px 10px 5px 0px;
	text-indent: 0px;
}

#main.service .service-item3{
	margin-left: 8%;
	margin-right: 5%;
	text-indent: -1em;
	line-height: 1.6em;
	padding-bottom: 10px;
	font-weight: 550;
}

#main table {
	font-size: 12px;	/*文字サイズ*/
	margin: 5px 10% 20px 15%;
	width: 70%;
}
#main table,
#main table td,
#main table th {
	border: 1px solid #ccc;	/*枠線の幅、線種、色*/
}
#main table td,
#main table th {
	padding: 5px;	/*テーブル内の余白*/
}
#main table th {
	width: 15%;		/*幅*/
	background: #f5f5f5;	/*背景色*/
	text-align: center;		/*文字をセンタリング*/
	font-weight: normal;	/*デフォルトの太字を標準にする設定*/
}

#main table.mass-pricelist{
	margin: 5px 5% 20px 10%;
}

#main table.mass-pricelist
#main table.mass-pricelist td,
#main table.mass-pricelist th {
	border: 1px solid #ccc;	/*枠線の幅、線種、色*/
}
#main table.mass-pricelist td,
#main table.mass-pricelist th {
	padding: 5px;	/*テーブル内の余白*/
}
#main table.mass-pricelist th {
	background: #f5f5f5;	/*背景色*/
	text-align: left;		/*文字をセンタリング*/
	font-weight: normal;	/*デフォルトの太字を標準にする設定*/
}
#main table.mass-pricelist td.group{
	width: 70px;
	vertical-align: top;
	text-align: center;
}

#main table.mass-pricelist td.price{
	width: 25%;
	text-align: right;
}

#main table.cloning-pricelist{
	width: 90%;
	margin: 5px 5% 10px 5%;
	text-align: center;
}
#main table.cloning-pricelist
#main table.cloning-pricelist td,
#main table.cloning-pricelist th {
	border: 1px solid #ccc;	/*枠線の幅、線種、色*/
}
#main table.cloning-pricelist td,
#main table.cloning-pricelist th {
	padding: 5px;	/*テーブル内の余白*/
}
#main table.cloning-pricelist th {
	background: #4472C4;	/*背景色*/
	color: #fff;
	font-weight: normal;	/*デフォルトの太字を標準にする設定*/
}
#main table.cloning-pricelist th.item{
	width: 140px;
}

#main table.cloning-pricelist th.desc{
	width: 160px;
	text-align: left;
}

#main table.cloning-pricelist td.kikan{
	width: 40px;
}

#main table.cloning-pricelist td.unit{
	width: 95px;
}

#main table.cloning-pricelist td.price{
	width: 95px;
}

#main table.cloning-pricelist-opt{
	width: 90%;
	margin: 5px 5% 10px 5%;
}
#main table.cloning-pricelist-opt
#main table.cloning-pricelist-opt td,
#main table.cloning-pricelist-opt th {
	border: 1px solid #ccc;	/*枠線の幅、線種、色*/
}
#main table.cloning-pricelist-opt td,
#main table.cloning-pricelist-opt th {
	padding: 5px;	/*テーブル内の余白*/
}
#main table.cloning-pricelist-opt th {
	background: #DF6613;	/*背景色*/
	color: #fff;
	text-align: center;		/*文字をセンタリング*/
	font-weight: normal;	/*デフォルトの太字を標準にする設定*/
}
#main table.cloning-pricelist-opt th.item{
	width: 140px;
	text-align: center;
}

#main table.cloning-pricelist-opt th.desc{
	width: 200px;
	text-align: center;
}

#main table.cloning-pricelist-opt td.unit{
	width: 95px;
	text-align: center;
}

#main table.cloning-pricelist-opt td.price{
	width: 95px;
	text-align: center;
}

#main table.btn-table {
	font-size: 16px;	/*文字サイズ*/
	margin: 15px 10% 15px 10%;
	width: 80%;
	border: 0px solid #fff;	/*枠線の幅、線種、色*/
}
#main table.btn-table td{
	border: 0px solid #fff;	/*枠線の幅、線種、色*/
	text-align: center;
	font-weight: bold;
	margin-bottom: 20px;
}
#main table.btn-table td.hosoku{
	color: red;
}
#main table.btn-table a.btn {
	padding: 8px 20px;
	background: #0075c2;/*#4496d3;/*rgba(1, 136, 86, 0.75);*/
	border: 1px solid #0075c2;	/*枠線の幅、線種、色*/
	text-decoration: none;
	color: #FFF;			/*文字色*/
	border-radius: 5px;	/*角丸のサイズ。50%にすると正円になる。*/
}
#main table.btn-table a.btn:hover {
	color: #0075c2;			/*文字色*/
	background: #ffffff; /*#ff8e8e;	/*背景色*/
}
#main div.dl-table {
	font-size: 16px;
	margin: 15px 0;
	text-align: center;
	font-weight: bold;
	line-height: 2.0em;
}
#main div.dl-table.hosoku {
	color: red;
}
#main div.dl-table a.btn {
	display: inline-block;
	padding: 8px 20px;
	background: #0075c2;
	border: 1px solid #0075c2;
	text-decoration: none;
	color: #FFF;
	border-radius: 16px;
	text-align: center;
	line-height: 1.6;
}
#main div.dl-table a.btn:hover {
	color: #0075c2;
	background: #ffffff;
}

#main table.form-table {
	font-size: 12px;	/*文字サイズ*/
	margin: 5px 10px 10px 30px;
	width: 500px;
}
#main table.form-table,
#main table.form-table td,
#main table.form-table th {
	border: 1px solid #ccc;	/*枠線の幅、線種、色*/
}
#main table.form-table td,
#main table.form-table th {
	padding: 5px;	/*テーブル内の余白*/
}
#main table.form-table td.formbtn{
	width: 100px;
	text-align: center;
}
#main table.form-table th {
	width: 15%;		/*幅*/
	color: #fff;	/*文字色*/
	background: #19448e;	/*背景色*/
	text-align: center;		/*文字をセンタリング*/
	font-weight: normal;	/*デフォルトの太字を標準にする設定*/
}

#main table.form-table a.btn {
	margin: 5px 10px 5px 10px;
	display: block;
	background: #19448e;
	color: #fff;	/*文字色*/
	border: 1px solid #fff;	/*枠線の幅、線種、色*/
	border-radius: 8px;		/*角丸のサイズ*/
	line-height: 24px;	/*高さ*/
	text-align: center;
	padding: 10px;
	text-decoration: none;
	width: 70px;
}
/*マウスオン時の「→」マーク*/
#main table.form-table a.btn:hover {
	color: #19448e;
	background: #fff;	/*文字色*/
	border: 1px solid #19448e;
}

#main table.floormap{
	width: 95%;
	margin: 5px 5px 20px 40px;
}

#main table.floormap
#main table.floormap td,
#main table.floormap th {
	border: 1px solid #ccc;	/*枠線の幅、線種、色*/
}
#main table.floormap td,
#main table.floormap th {
	padding: 5px;	/*テーブル内の余白*/
}
#main table.floormap th {
	background: #f5f5f5;	/*背景色*/
	text-align: left;		/*文字をセンタリング*/
	font-weight: normal;	/*デフォルトの太字を標準にする設定*/
}
#main table.floormap td{
	width: 20%;
}

#main table.floormap td.group{
	font-size: larger;
	width: 80px;
	vertical-align: center;
	text-align: center;
	font-weight: bold;
}

#main table.floormap td.price{
	width: 25%;
	text-align: right;
}

#main ul.floor-kikilist{
	margin: 0px 1em 0px 1em;
	padding: 5px;
	color: #3c3c3c;
	text-indent: -1em;
}
#main ul.floor-kikilist li::before {
	display: block;
	float: left;	/*右側に配置*/
	content: '';
	padding: 0 .3em 0 -2em;
}

#main #id-kikilist {
	font-size: 12px;	/*文字サイズ*/
	margin: 5px 10px 20px 30px;
	width: 95%;
}
#main #id-kikilist th.w30{
	width: 30px;
}
#main #id-kikilist th.w50{
	width: 50px;
}
#main #id-kikilist th.w80{
	width: 80px;
}
#main #id-kikilist th.w120{
	width: 120px;
}

#main ul.sitemap-sublist,
#main2 ul.sitemap-sublist{
	margin-top: -10px;
	margin-left: 2em;
	margin-bottom: 2em;
	padding: 0px 10px 5px 30px;
	color: #3c3c3c;
	text-indent: -1em;
}
#main ul.sitemap-sublist li::before,
#main2 ul.sitemap-sublist li::before{
	display: block;
	float: left;	/*右側に配置*/
	content: '';
	padding: 0 .3em 0 -2em;
}

/*SERVICEページ
---------------------------------------------------------------------------*/
/*各ボックスの設定（共通）*/
.list {
	background: #fff;	/*背景色*/
	position: relative;
	overflow: hidden;
	box-shadow: 1px 1px 3px rgba(0,0,0,0.2);	/*影の設定。右へ、下へ、広げる幅、0,0,0は黒で0.2は透明度20%の事。*/
	margin-bottom: 20px;
	display: block;
	height: 100%;
}
.list a {
	text-decoration: none;
	display: block;
	overflow: hidden;
}
/*画像の設定*/
.list img.img {
	float: left;
	width: 120px;	/*画像の幅。ここを変更する場合は、下の.list .textのmargin-leftの数字も調整する。*/
}
/*右側のテキスト欄*/
.list .text {
	padding: 10px 0px 10px 10px;	/*上、右、下、左への余白*/
	margin-left: 120px;		/*左の画像とのバランスをとって設定*/
	width: 44%;
	line-height: 1.4em;

}
/*h4見出しタグの設定*/
.list h4 {
	color: #0075c2;	/*文字色*/
}
/*pタグの設定*/
.list p {
	padding: 0 !important;
	font-size: 14px;
}
.list .rightbox{
	float: right;
}

/*３カラムタイプのボックス設定*/
.list.c3 {
	width: 31%;	/*ボックスの幅*/
	margin: 0 1% 20px;	/*上、左右、下へのボックスの外側にとる余白*/
	float: left;
	height: 300px;	/*高さ。下の「.list.c3 a」のheightと合わせる。*/
	text-align: center;	/*文字をセンタリング*/
}
.list.c3 a {
	height: 300px;
}
/*３カラムタイプの画像設定*/
.list.c3 img.img {
	float: none;
	width: 100%;
}
.list.c3 .text {
	padding: 0;
	margin-left: 0;
}

.list .rightbox table {
	padding-left: 0px;
	position: absolute;
	right: 13%;
	width: 25%;
}
.list .rightbox table.row1 {
	top: 17px;		/*ボックスの上から20pxの場所に配置*/
}
.list .rightbox table.row3 {
	top: 5px;		/*ボックスの上から20pxの場所に配置*/
}

/*ボックスにリンク指定がされた場合に出る「→」マーク*/
.list .rightbox a {
	position: absolute;
	right: 1%;	/*ボックスの右から20pxの場所に配置*/
	top: 15px;		/*ボックスの上から20pxの場所に配置*/
	background: #19448e;
	color: #fff;	/*文字色*/
	border: 1px solid #fff;	/*枠線の幅、線種、色*/
	border-radius: 8px;		/*角丸のサイズ*/
	width: 10%;		/*幅*/
	line-height: 24px;	/*高さ*/
	text-align: center;
	padding: 5px;
}
/*マウスオン時の「→」マーク*/
.list .rightbox a:hover {
	right: 1%;	/*ボックスの右から20pxの場所に配置*/
	top: 10px;		/*ボックスの上から20pxの場所に配置*/
	width: 10.5%;		/*幅*/
	line-height: 30px;	/*高さ*/
}

/*１カラムでページを表示時の３カラムボックスの高さ*/
.c1 .list.c3,
.c1 .list.c3 a {
	height: 400px;
}

/*一覧ページの各物件ボックス内のテーブル（CMS用）
---------------------------------------------------------------------------*/
.list table {
	font-size: 12px;	/*文字サイズ*/
	width: 100%;
}
.list table,
.list table td,
.list table th {
	border: 1px solid #ccc;	/*枠線の幅、線種、色*/
}
.list table td,
.list table th {
	padding: 1px;	/*テーブル内の余白*/
}
/*色のついた見出しブロック*/
.list table th {
	width: 18%;		/*幅*/
	background: #f5f5f5;	/*背景色*/
	text-align: center;		/*文字をセンタリング*/
	font-weight: normal;	/*デフォルトの太字を標準にする設定*/
}
/*白い説明用ブロック*/
.list table td {
	width: 30%;	/*幅*/
	text-align: center;
}

.tablearea{
	width: 60%;
	padding-left: 20%;
	padding-bottom: 20px;
}

.tablearea table {
	font-size: 12px;	/*文字サイズ*/
	width: 100%;
}
.tablearea table,
.tablearea table td,
.tablearea table th {
	border: 1px solid #ccc;	/*枠線の幅、線種、色*/
}
.tablearea table td,
.tablearea table th {
	padding: 1px;	/*テーブル内の余白*/
}
/*色のついた見出しブロック*/
.tablearea table th {
	width: 18%;		/*幅*/
	background: #f5f5f5;	/*背景色*/
	text-align: center;		/*文字をセンタリング*/
	font-weight: normal;	/*デフォルトの太字を標準にする設定*/
}
/*白い説明用ブロック*/
.tablearea table td {
	width: 30%;	/*幅*/
	text-align: center;
}

#main table.service-table {
	font-size: 12px;	/*文字サイズ*/
	width: 80%;
	font-weight: bold;
}
#main table.service-table,
#main table.service-table td,
#main table.service-table th {
	border: 1px solid #ccc;	/*枠線の幅、線種、色*/
}
#main table.service-table td,
#main table.service-table th {
	padding: 5px;	/*テーブル内の余白*/
}
#main table.service-table td.formbtn{
	width: 100px;
	text-align: center;
}
#main table.service-table th {
	width: 15%;		/*幅*/
	color: #19448e;	/*文字色*/
	background: #add6ff;	/*背景色*/
	text-align: center;		/*文字をセンタリング*/
	font-weight: bold;
}

#main table.service-table a.btn {
	margin: 5px 10px 5px 10px;
	display: block;
	background: #19448e;
	color: #fff;	/*文字色*/
	border: 1px solid #fff;	/*枠線の幅、線種、色*/
	border-radius: 8px;		/*角丸のサイズ*/
	line-height: 24px;	/*高さ*/
	text-align: center;
	padding: 10px;
	text-decoration: none;
	width: 70px;
}
/*マウスオン時の「→」マーク*/
#main table.service-table a.btn:hover {
	color: #19448e;
	background: #fff;	/*文字色*/
	border: 1px solid #19448e;
}
.service-flow-h{
	width: 95%;
	margin-left: 20px;
	margin-bottom: 15px;
}
.service-flow-h .box {
    padding-top: 25px;
    padding-left: 20px;
    height: 95px;
    background: #add6ff;
    float: left;  /* 横並び */
    /*display: table-cell;*/
    position: relative;
}
.service-flow-h .next {
    width: 240px;
}
.service-flow-h .last {
    width: 200px;
}

.service-flow-h .next:before {
    border-left: 60px solid #1e90ff;
    border-top: 60px solid transparent;
    border-bottom: 60px solid transparent;
    content: "";
    position: absolute;
    right: 0; /* ボックスの左に合わせて三角形を作る */
    top: 0;
}
.service-flow-h .next:after {
    border-left: 60px solid #add6ff;
    border-top: 60px solid transparent;
    border-bottom: 60px solid transparent;
    content: "";
    display: inline-block;
    position: absolute;
    right: 10; /* ボックスの左に合わせて三角形を作る */
    top: 0;
}
.service-flow-h .last:before {
    border-left: 60px solid #1e90ff;
    border-top: 60px solid transparent;
    border-bottom: 60px solid transparent;
    content: "";
    position: absolute;
    right: -60px; /* ボックスの左に合わせて三角形を作る */
    top: 0;
}
.service-flow-h .last:after {
    border-left: 60px solid #add6ff;
    border-top: 60px solid transparent;
    border-bottom: 60px solid transparent;
    content: "";
    position: absolute;
    right: -58px; /* ボックスの左に合わせて三角形を作る */
    top: 0;
}

.step{
  list-style-type: none;
  width:80%;
  display:table;
  padding:0;
  margin:0;
  overflow:hidden;
}
.step li{
  display:table-cell;
  position:relative;
  background: #add6ff;
  height: 74px;
  padding: 25px 10px 20px 20px;
  color: #fff;
}
.step li:last-child{
  padding-right: 10px;
}

/*
.step li:last-child:before,
.step li:last-child:after{
  display:none;
}*/
.step li:before,
.step li:after{
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  margin: auto;
}
.step li:before{
  top:-3px;
  right: 0px;
  border-style: solid;
  border-color: transparent transparent transparent #1e90ff;
  border-width: 40px 0 40px 40px;
  z-index: 10;
}
.step li:after{
  top:-3px;
  right: 2px;
  border-style: solid;
  border-color: transparent transparent transparent #add6ff;
  border-width: 40px 0 40px 40px;
  z-index: 10;
}
.step li.is-current{
  background: #fff;
  z-index: 2;
}
.step li.is-current:before,
.step li.is-current:after{
  margin-left: -30px;
  border-color: transparent transparent transparent #fff;
}

.triangle {
    margin-left: 50px;
    width: 60px;
    height: 20px;
    background: #003366;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
}

#main section.service h4.feature{
	margin-left: 30px;
	margin-right: 20px;
	margin-bottom: 5px;
	padding: 10px 10px 5px 10px;
	/*border-left: 5px double #7fbfff;*/
	/*border-bottom: 1px solid #7fbfff;/*#0075c2;*/
	line-height: 1.6em;
	color: #0068b7;/*#043c78;/*#0068b7;*/
}
#main section.service h4.feature::before {
	font-family: "Font Awesome 5 Free";
	content: '\f06d';/*'\f559';/*'\f0a3';*/
	padding: 0 .4em 0 0;
	color: #0068b7;/*#043c78;/*#7fbfff;/*#043c78;/*#0068b7;*/
	font-weight: bold;
	font-size: 20px;
}

#main section.service  table.img-table {
	margin: 10px auto;
	text-align: center;
	width: 90%;
	border: 1px solid #0B76A0;
	color: #fff;
}
#main section.service  table.img-table th{
	background-color: #0B76A0;
}

#main section.service  table.img-table img{
	max-height: 160px;
	width: auto;
}

.service-step-area {
	margin: 5px 10px 5px 10px;
	border-radius: 20px;
	line-height: 1.2em;
	padding: 0px 30px 15px 30px;
}
.service-step-area h4.step{
	line-height: 1.6em;
	font-weight: 550;	/*太字*/
	padding: 10px 15px 5px 0px;
}

/*ブロック全体*/
.service-step {
	padding: 0px 10px;	/*上下、左右への余白*/
}
.service-step dt {
	color: #000;	/*文字色*/
	font-weight: 550;	/*太字*/
	padding-top: 5px;
}
.service-step dt a {
	color: #1a4ef7;
}
.service-step dd {
	padding-left: 20px;
	padding-bottom: 10px;
}

.service-step dd ul {
	padding-left: 20px;
}
.service-step dd ul li {
	margin-left: 10px;
	list-style-type: disc;
	line-height: 1.4em;
}
.service-step dd div.hosoku{
	text-indent: -1.0em;
	padding-left: 3em;
	line-height: 1.4em;
}

#main ul.serviceopt{
	list-style: none; /* デフォルトのマーカーを消す */
	margin: 0px 3em 0px 5em;
	padding: 5px 10px 10px 30px;
	color: #3c3c3c;
}
#main ul.serviceopt li {
	position: relative;
	line-height: 1.4em;
	text-indent: -1.0em;
    padding-left: 1.0em;
}
#main ul.serviceopt li::before {
	content: "※"; /* 任意の先頭記号 */
	display: inline-block;
	/*width: 1.5em; /* padding-leftと揃える */
}

/*サブコンテンツ
---------------------------------------------------------------------------*/
/*メインコンテンツブロック*/
#sub {
	float: left;	/*左に回り込み*/
	width: 18%;		/*幅*/
	background: #fff;	/*背景色*/
}
/*メインコンテンツブロック（１カラム時）*/
.c1 #sub {
	display: none;	/*非表示にする設定*/
}
/*subコンテンツ内のh2タグ設定*/
#sub nav {
	border: 1px solid #0075c2;
	margin-bottom: 20px;
}
#sub nav.exlink{
	border: 1px solid #006837;
}
#sub h2 {
	padding: 10px 15px;	/*上下左右へのボックス内の余白*/
	font-weight: normal;	/*hタグのデフォルトの太字を標準にする設定*/
	/*letter-spacing: 0.1em;	文字間隔を少し広くとる設定*/
	font-size: 18px;		/*文字サイズ*/
	line-height: 1.5;	/*行間*/
	color: #fff;		/*文字色*/
	background: #0075c2;	/*背景色（サンプルテンプレートでは以下のキーボードやグリーンの背景画像とともに設定しているので注意）*/
	border-top: 1px solid #0075c2;	/*上の線の幅、線種、色*/
	border-bottom: 1px solid #0075c2;	/*下の線の幅、線種、色*/
}
#sub nav.exlink h2{
	background: #006837;	/*背景色（サンプルテンプレートでは以下のキーボードやグリーンの背景画像とともに設定しているので注意）*/
	border-top: 1px solid #006837;	/*上の線の幅、線種、色*/
	border-bottom: 1px solid #006837;	/*下の線の幅、線種、色*/
}
/*navの直後にnavとh2が続いた場合と、navタグの直後にh2が続いた場合に、h2の上のラインを消す設定*/
#sub nav + nav h2,
#sub nav + h2 {
	border-top: none;
}
/*subコンテンツ内のh2タグ内のspanタグ設定*/
#sub h2 span {
	display: block;
	font-size: 13px;	/*文字サイズ*/
	letter-spacing: normal;	/*文字間隔を標準に戻す設定*/
}
/*subコンテンツ内のpタグ設定*/
#sub p {
	padding: 15px;
}

#sub .nav-title-link{
	color: #fff;
	text-decoration: none;
}
/*サブコンテンツ内のメニュー
---------------------------------------------------------------------------*/
/*メニュー全体の設定*/
#sub ul.submenu {
	border-top: 1px solid #ccc;	/*上の線の幅、線種、色*/
}
/*h2タグの直後にsubmenuが入った場合にsubmenuの上のラインを消す設定*/
#sub h2 + ul.submenu {
	border-top: none;
}
/*メニュー１個ごとの設定*/
#sub ul.submenu li a {
	text-decoration: none;
	display: block;
	padding: 10px;	/*メニュー内の余白*/
	border-top: 1px solid #0075c2;	/*下の線の幅、線種、色*/
}
#sub ul.submenu li a.cur {
	background: #4496d3;/*#68a4d9;/*rgb(0, 136, 86);*/
	color: #fff;
}
/*マウスオン時*/
#sub ul.submenu li a:hover {
	background: #bcbcbc;	/*背景色*/
	color: #fff;	/*文字色*/
}
/*「->」マーク*/
#sub ul.submenu li a::before {
	display: block;
	float: left;	/*右側に配置*/
	font-family: "Font Awesome 5 Free";
	content: '\f0a9';
	padding: 0 .3em 0 0;
	color: #0075c2;
	font-weight: bold;
}

#sub ul.submenu li.exlinkitem a {
	border-top: 1px solid #006837;	/*下の線の幅、線種、色*/
}
/*「->」マーク*/
#sub ul.submenu li.exlinkitem a::before {
	color: #006837;
}

/*「->」マーク*/
#sub ul.submenu li a.cur::before {
	color: #fff;
}
/*マウスオン時の「>」マーク*/
#sub ul.submenu li a:hover::before {
	color: #fff;	/*文字色*/
}

#sub ul.subsubmenu {
	margin-left: 10%;
}
/*h2タグの直後にsubmenuが入った場合にsubmenuの上のラインを消す設定*/
#sub h2 + ul.subsubmenu {
	border-top: none;
}
/*メニュー１個ごとの設定*/
#sub ul.subsubmenu li a {
	text-decoration: none;
	display: block;
	padding: 5px 10px;	/*メニュー内の余白*/
	border-top: 0px solid #fff;	/*下の線の幅、線種、色*/
}
/*マウスオン時*/
#sub ul.subsubmenu li a:hover {
	/*border-bottom: 1px dotted #0075c2;	下の線の幅、線種、色*/
	text-decoration: dotted;
	color: #0075c2;	/*文字色*/
	background: #fff;	/*背景色*/
}
#sub ul.subsubmenu li a::before {
	display: block;
	float: left;	/*右側に配置*/
	content: '';
	padding: 0 .3em 0 0;
	font-weight: bold;
}
#sub ul.subsubmenu li a:hover::before {
	font-family: "Font Awesome 5 Free";
	content: '\f101';
	color: #0075c2;
	font-weight: bold;
}

#sub a.extbtn {
	display: block;
	padding: 8px 20px;
	background: rgb(1, 136, 86);
	border: 3px doubled #0075c2;	/*枠線の幅、線種、色*/
	text-decoration: none;
	color: #FFF;			/*文字色*/
	border-radius: 5px;	/*角丸のサイズ。50%にすると正円になる。*/
}
#sub a.extbtn:hover {
	background: #ccc;	/*背景色*/
}
#sub a.extbtn:hover::before {
	font-family: "Font Awesome 5 Free";
	content: '\f35d';
	color: #0075c2;
	font-weight: bold;
}

/*PAGE TOP設定
---------------------------------------------------------------------------*/
#pagetop {
	clear: both;
}
#pagetop a {
	text-decoration: none;
	text-align: center;
	display: block;
	float: right;
	margin-right: 3%;
	color: #FFF;		/*文字色*/
	font-size: 20px;	/*文字サイズ*/
	padding: 0px 30px;	/*上下、左右へのボックス内余白*/
	background: #0075c2;/*#7ab21f;	/*背景色*/
	border-radius: 4px 4px 0px 0px;	/*角丸のサイズ。左上、右上、右下、左下。*/
}
/*マウスオン時*/
#pagetop a:hover {
	background: #999;	/*背景色*/
	color: #FFF;			/*文字色*/
}

/*フッター設定
---------------------------------------------------------------------------*/
footer {
	clear: both;
	background: #0075c2;	/*背景色*/
	color: #fff;			/*文字色*/
	text-align: center;
}
footer a {
	color: #fff;
	text-decoration: none;
}
footer a:hover {
	color: #fff;
}
footer .pr {
	display: block;
	font-size: 80%;
}

/*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
/*ブロック全体の設定*/
#new dl {
	padding-left: 15px;
	margin-bottom: 15px;
	height: 500px;	/*高さ*/
	overflow: auto;	/*高さの設定を超えるとスクロールが自動で出る設定。全部表示させていたいならこの行と上の行を削除。*/
}
/*日付設定*/
#new dt {
	font-weight: bold;
	float: left;
	clear: left;
	width: 8em;
	margin-left: 10px;
	margin-right: 10px;
	line-height: 1.2em;
	min-height: 50px;
	display: block;
	vertical-align: top;
}
/*記事設定*/
#new dd {
	padding-left: 8em;
	line-height: 1.2em;
	display: block;
	min-height: 50px;
	vertical-align: top;
	padding-bottom: 10px;
}

/*よく頂く質問ページ
---------------------------------------------------------------------------*/
/*ブロック全体*/
.faq {
	padding: 0px 15px;	/*上下、左右への余白*/
}
/*質問の設定*/
.faq dt {
	color: #0075c2;	/*文字色*/
	font-weight: bold;	/*太字*/
	padding-top: 15px;
}
.faq dt a {
	color: #1a4ef7;
}
/*回答の設定*/
.faq dd {
	border-bottom: 1px solid #CCC;	/*下線の幅、線種、色*/
	overflow: hidden;
	padding-bottom: 15px;
}

/*一覧ページのボックス右下のオプションマーク
（CMSの場合は管理ページの「オプション1」～のプルダウンと、setup.phpの「オプション選択肢」に関連します）
---------------------------------------------------------------------------*/
.option1 {
	font-size: 10px;
	color: #FFF;
	background: #F00;
	text-align: center;
	display: block;
	width: 120px;
	position: absolute;
	left: 0px;
	top: 0px;
	-webkit-transform: rotate(-45deg) translate(-35px);
	transform: rotate(-45deg) translate(-35px);
}
h2 span.option1 {
	width: auto;
	padding: 0px 5px;
	position: static;
	-webkit-transform: none;
	transform: none;
	display: inline-block;
}
.option2 {
	font-size: 10px;
	color: #FFF;
	background: #069;
	text-align: center;
	display: block;
	width: 120px;
	position: absolute;
	left: 0px;
	top: 0px;
	-webkit-transform: rotate(-45deg) translate(-35px);
	transform: rotate(-45deg) translate(-35px);
}
h2 span.option2 {
	width: auto;
	padding: 0px 5px;
	position: static;
	-webkit-transform: none;
	transform: none;
	display: inline-block;
}

/*テーブル ta1
---------------------------------------------------------------------------*/
/*ta1設定*/
.ta1 {
	width: 96%;
	margin: 0 2% 20px;
	background: #fff;	/*背景色*/
}
.ta1, .ta1 td, .ta1 th {
	border: 1px solid #ccc;	/*テーブルの枠線の幅、線種、色*/
	padding: 10px;	/*ボックス内の余白*/
	word-break: break-all;
}
/*テーブル１行目に入った見出し部分*/
.ta1 th.tamidashi {
	width: auto;
	text-align: left;		/*左よせ*/
	background: #eee;	/*背景色*/
}
/*ta1の左側ボックス*/
.ta1 th {
	width: 140px;	/*幅*/
	text-align: center;	/*センタリング*/
}
/*左側ボックスに画像を入れた場合の設定*/
.ta1 th img {
	width: 100%;
}

/*トップページのNEWアイコン
---------------------------------------------------------------------------*/
.newicon {
	background: #F00;
	color: #FFF;
	font-size: 70%;
	line-height: 1.5;
	padding: 3px 5px 1px 5px;
	border-radius: 2px;
	margin: 0px 5px;
	display: inline-block;
	vertical-align: text-top
}

/*その他
---------------------------------------------------------------------------*/
.look {color:#fff;background: #666;padding:5px;border-radius: 4px;}
.mb15,.mb1em {margin-bottom: 15px;}
.clear {clear: both;}
ul.disc {padding: 0em 25px 1em;list-style: disc;}
.color1 {color: #0075c2;}
.pr {font-size: 10px;}
.wl {width: 96%;}
.ws {width: 50%;}
.c {text-align: center;}
.r {text-align: right;}
.l {text-align: left;}
.fr {float: right;margin-left: 1%;margin-bottom: 15px;width: 45%;}
.fl {float: left;margin-right: 1%;margin-bottom: 15px;width: 45%;}
.big1 {font-size: 30px;letter-spacing: 0.2em;}
.mini1 {font-size: 11px;}
.sh {display: none;}
.dn {display: none;}


/*機器一覧ページの詳細ダイアログ
---------------------------------------------------------------------------*/
ul.list{
}

#main ul.kikilist{
	margin: -10px 2em 2em 2em;
	padding: 0px 10px 5px 30px;
	color: #3c3c3c;
	display: table;
}
#main ul.kikilist li{
	display: table-row;
	line-height: 1.4em;
}
#main ul.kikilist li::before {
	display: table-cell;
	font-family: "Font Awesome 5 Free";
	content: '\f069';
	padding: .8em .3em 0 0;
	color: #0068b7;/* #00947a; */
	font-weight: 700;
}
#main ul.kikilist li.pink::before {
	content: '\f140';
	color: #ff1493;/* #00947a; */
}
#main ul.kikilist li.blue::before {
	content: '\f140';
	color: #0068b7;/* #00947a; */
}
#main ul.kikilist li.free::before {
	content: '\f111';
	color: #999;/* #00947a; */
}

#main ul.kikilist li a{

}

#main ul.checklist{
	margin-top: -10px;
	margin-left: 2em;
	margin-bottom: 1em;
	padding: 0px 10px 5px 30px;
	color: #3c3c3c;
	display: table;
}
#main ul.checklist li{
	display: table-row;
	line-height: 1.4em;
}
#main ul.checklist li::before {
	display: table-cell;
	font-family: "Font Awesome 5 Free";
	content: '\f00c';
	padding: .8em .3em 0 0;
	color: #0068b7;/* #00947a; */
	font-weight: 700;
}

.detail-dialog{
	text-align: center;
	display: none;
}
.detail-dialog h4{
	padding: 10px 3px 10px 3px;
	line-height: 20px;
}
.detail-dialog dl{
	width: 90%;
	margin: 10px 5px 10px 5px;
}
.detail-dialog dt{
	vertical-align: top;
	float: left;
	text-align: left;
	line-height: 20px;
	width: 120px;
}

.detail-dialog dd{
	text-align: left;
	line-height: 20px;
	margin-left: 120px;
}

.detail-dialog img{
	width: 90%;
}

.detail-dialog .btndesc{
	padding-top: 20px;
	padding-bottom: 3px;
	line-height: 20px;
}
.detail-dialog a.reservebtn {
	margin: 5px 10px 5px 70px;
	display: block;
	background: #19448e;
	color: #fff;	/*文字色*/
	border: 1px solid #fff;	/*枠線の幅、線種、色*/
	border-radius: 8px;		/*角丸のサイズ*/
	line-height: 24px;	/*高さ*/
	text-align: center;
	padding: 10px;
	text-decoration: none;
	width: 70%;
}
/*マウスオン時の「→」マーク*/
.detail-dialog a.reservebtn:hover {
	color: #19448e;
	background: #fff;	/*文字色*/
	border: 1px solid #19448e;
}

.detail-dialog table {
	font-size: 12px;	/*文字サイズ*/
	width: 100%;
}
.detail-dialog table,
.detail-dialog table td,
.detail-dialog table th {
	border: 1px solid #ccc;	/*枠線の幅、線種、色*/
}
.detail-dialog table td,
.detail-dialog table th {
	padding: 1px;	/*テーブル内の余白*/
}
/*色のついた見出しブロック*/
.detail-dialog table th {
	width: 18%;		/*幅*/
	background: #f5f5f5;	/*背景色*/
	text-align: center;		/*文字をセンタリング*/
	font-weight: normal;	/*デフォルトの太字を標準にする設定*/
}
/*白い説明用ブロック*/
.detail-dialog table td {
	width: 30%;	/*幅*/
	text-align: center;
}

/*画面幅1200px以上の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (min-width:1200px){

/*SERVICEページ
---------------------------------------------------------------------------*/
/*３カラムタイプのボックスの高さ*/
.list.c3,
.list.c3 a {
	height: 380px;
}
/*１カラムでページを表示時の３カラムボックスの幅*/
.c1 .list.c3 {
	width: 23%;
}

}



/*画面幅1600px以上の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (min-width:1600px){

/*SERVICEページ
---------------------------------------------------------------------------*/
/*３カラムタイプのボックスの高さ*/
.list.c3,
.list.c3 a {
	height: 450px;
}
/*１カラムでページを表示時の３カラムボックスの幅*/
.c1 .list.c3 {
	width: 18%;
}
/*共通*/
.list.c3,
.c1 .list.c3 {
	max-width: 400px;	/*この幅以上には広がらないようにする*/
}

}



/*画面幅900px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:900px){

/*ヘッダー（ロゴが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*ヘッダー右側のアイコン類*/
#h-nav {
	right: 20%;	/*右から20%の場所に配置*/
}

/*メインメニュー
---------------------------------------------------------------------------*/
/*メニューブロックの設定*/
#menubar-s {
	display: block;	/*小さい端末用(画面幅800px以下)メニューを非表示から表示に切り替える*/
	background: #0075c2;
	overflow: hidden;
}
/*メニュー１個あたりの設定*/
#menubar-s li {
	float: left;
	width: 50%;		/*幅*/
}
#menubar-s li a {
	text-decoration: none;
	display: block;
	text-align: center;
	line-height: 50px;		/*行間（高さ）*/
	color: #fff;
	border-bottom: 1px solid #fff;
	border-right: 1px solid #fff;
}
#menubar-s li:nth-child(even) a {
	border-right: none;
}
/*大きな端末用(画面幅801px以上)メニューを非表示にする*/
#menubar {
	display: none;
}

/*３本バーアイコン設定
---------------------------------------------------------------------------*/
/*３本バーブロック*/
#menubar_hdr {
	display: block;
	z-index: 4;
	position: absolute;
	top: 25px;		/*上から25pxの場所に配置*/
	right: 3%;		/*右から3%の場所に配置*/
	width: 30px;	/*幅*/
	border: 1px solid #0075c2;	/*枠線の幅、線種、色*/
	padding: 12px 10px 5px;	/*上、左右、下へのボックス内余白*/
}
#top #menubar_hdr {
	border: 1px solid #0075c2;	/*トップページでの枠線の幅、線種、色*/
}
/*３本のバー（1本あたり）*/
#menubar_hdr span {
	display: block;
	border-top: 3px solid #0075c2;	/*枠線の幅、線種、色*/
	margin-bottom: 7px;			/*バー同士の余白*/
}
#top #menubar_hdr span {
	border-top: 3px solid #0075c2;	/*トップページでの枠線の幅、線種、色*/
}

/*main,subコンテンツ
---------------------------------------------------------------------------*/
#main, #sub {
	float: none;
	width: auto;
}

/*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
section#new h2.open {
	background: #0075c2 url(../images/btn_minus.png) no-repeat right center/34px 34px;
}
section#new h2.close {
	background: #0075c2 url(../images/btn_plus.png) no-repeat right center/34px 34px;
}

/*その他
---------------------------------------------------------------------------*/
body.s-n #sub {display: none;}

}



/*画面幅600px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:600px){

/*ヘッダー（ロゴが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*ロゴ画像*/
#logo img {
	/*width: 200px;	画像幅*/
	/*top: 38px;	/*上から38pxの場所に配置*/
	width: 80px;	/*画像幅*/
	position: absolute;
	left: 3px;
	top: 3px;
}

}


/*画面幅480px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:480px){

/*ヘッダー（ロゴが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*ロゴ画像*/
#logo img {
	left: 5%;	/*左から5%の場所に配置*/
	top: 15px;	/*上から15pxの場所に配置*/
}
/*ヘッダー右側のアイコン類*/
#h-nav {
	left: 0px;	/*左から0pxの場所に配置*/
	top: 55px;	/*上から55pxの場所に配置*/
}

/*メインメニュー
---------------------------------------------------------------------------*/
/*メニュー１個あたりの設定*/
#menubar-s li {
	float: none;
	width: 100%;
}
#menubar-s li a {
	border-right: none;
}

/*SERVICEページ
---------------------------------------------------------------------------*/
/*画像の設定*/
.list img.img {
	float: none;
	width: 100%;
}
/*右側のテキスト欄*/
.list .text {
	padding: 2%;
	margin-left: 0;
}
/*３カラムタイプのボックス設定*/
.list.c3 {
	width: auto;
	margin: 0 0 20px;
	float: none;
	height: auto;
}
.list.c3 a {
	height: auto;
}

/*テーブル
---------------------------------------------------------------------------*/
/*テーブル内の左側*/
.ta1 th {
	width: 90px;
	padding: 5px;
}
/*テーブル内の右側*/
.ta1 td {
	width: auto;
	padding: 5px;
}

/*その他
---------------------------------------------------------------------------*/
.ws,.wl {width: 95%;}
.fr,.fl {float: none;margin: 0;margin-bottom: 10px;width: 100%;}
.sh {display: block;}
.pc {display: none;}

.tablearea{
	width: 95%;
	padding-left: 5px;
	padding-bottom: 5px;
}

}
