@charset "utf-8";


/*全体の設定
---------------------------------------------------------------------------*/
body {
	color: #666;	/*全体の文字色*/
	margin: 0px;
	padding: 0px;
	font: 14px/2 "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Osaka, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro";/*文字サイズ・行間・フォント設定*/
	background: #FFF;	/*背景色*/
}
h1,h2,h3,h4,h5,p,ul,ol,li,dl,dt,dd,form,figure{
	margin: 0px;
	padding: 0px;
}
ul{
	list-style-type: none;
}
img {
	border: none;
}
input,textarea,select {
	font-size: 1em;
}
form {
	margin: 0px;
}
table {
	border-collapse:collapse;
	font-size: 100%;
	border-spacing: 0;
}

/*リンク（全般）設定
---------------------------------------------------------------------------*/
a {
	color: #666;	/*リンクテキストの色*/
}
a:hover {
	color: #57bff0;			/*マウスオン時の文字色（全体）*/
	text-decoration: none;	/*マウスオン時に下線を消す設定。残したいならこの１行削除。*/
}

/*bodyの直接の子要素のh1タグ（ページ最上段にあるh1）設定
---------------------------------------------------------------------------*/
body > h1 {
	font-size: 10px;		/*文字サイズ*/
	color: #FFF;			/*文字色*/
	background: #57bff0;	/*背景色*/
	text-align: right;		/*右寄せ*/
}
body > h1 a, body > h1 a:hover {
	color: #FFF;
	text-decoration: none;
}

/*コンテナー（HPを囲むブロック）
---------------------------------------------------------------------------*/
#container {
	width: 997px;	/*コンテナー幅*/
	margin-right: auto;
	margin-left: auto;
}

/*ヘッダー（サイト名ロゴが入ったブロック）
---------------------------------------------------------------------------*/
header {
	width: 100%;	/*ブロックの幅*/
}
/*h1ロゴの設定*/
header h1 {
	padding: 20px 0px 20px 20px;	/*上、右、下、左側へあける余白*/
}

/*上部のメインメニュー
---------------------------------------------------------------------------*/
/*メニュー１個ごとの設定*/
nav#menu ul li {
	float: left;
	width: 198px;	/*メニュー幅*/
	border-right: 1px solid #dcdcdc;	/*メニューの右側の線の幅、線種、色*/
	text-align: center;	/*文字を中央に揃える*/
	font-weight: bold;	/*文字を太字にする設定*/
	margin-bottom: 20px;	/*メニューの下にあけるスペース*/
}
nav#menu ul li a {
	color: #57bff0;		/*文字色*/
	text-decoration: none;
	display: block;
	-webkit-transition: 0.5s;	/*マウスオン時の移り変わるまでの時間設定。0.5秒。*/
	transition: 0.5s;			/*同上*/
}
/*最初のメニューの設定*/
nav#menu ul li:first-child {
	border-left: 1px solid #dcdcdc;	/*左側に線を入れる*/
}
/*マウスオン時の設定*/
nav#menu ul li a:hover {
	background-color: #57bff0;	/*背景色*/
	color: #FFF;	/*文字色*/
}
/*英語表記の設定*/
nav#menu ul li a span {
	font-size: 9px;	/*文字サイズ*/
	display: block;
	font-weight: normal;	/*文字を太字でなく標準にする設定*/
	letter-spacing: 0.2em;	/*文字間隔を少しあける設定*/
	color: #999;	/*文字色*/
}
nav#menu ul li a:hover span {
	color: #fffbc3;	/*マウスオン時*/
}

/*コンテンツ（main,sub,sideを囲むブロック）
---------------------------------------------------------------------------*/
#contents {
	clear: left;
	width: 100%;
}

/*コンテンツin（main,subを囲むブロック）
---------------------------------------------------------------------------*/
#contents-in {
	float: left;
	width: 785px;
}
/*2カラム時*/
body.c2 #contents-in {
	float: none;
	width: 100%;
}

/*メインコンテンツ（中央ブロック）
---------------------------------------------------------------------------*/
#main {
	float: right;	/*右側に回り込み*/
	width: 570px;	/*メインコンテンツ幅*/
	padding-bottom: 30px;
}
/*2カラム時*/
body.c2 #main {
	width: 782px;	/*メインコンテンツ幅*/
}
/*mainコンテンツのh2タグ設定*/
#main h2 {
	background-color: #57bff0;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#75c9f0), to(#57bff0));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#75c9f0, #57bff0);	/*同上*/
	background-image: linear-gradient(#75c9f0, #57bff0);			/*同上*/
	-webkit-box-shadow: 1px 2px 7px #999;	/*影の設定。右・下・ぼかし幅・色の設定*/
	box-shadow: 1px 2px 7px #999;			/*同上*/
	font-size: 100%;
	color: #FFF;	/*文字色*/
	padding: 5px 10px;	/*左から、上下、左右への余白*/
	clear: both;
}
/*mainコンテンツのh3タグ設定*/
#main h3 {
	font-size: 1.2em;
	background-color: #ececec;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#FFF), to(#ececec));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#FFF, #ececec);	/*同上*/
	background-image: linear-gradient(#FFF, #ececec);	/*線の幅、線種、色*/
	-webkit-box-shadow: 0px 0px 0px 1px #FFF inset;	/*内側への影。右・下・ぼかし幅・距離・色を設定*/
	box-shadow: 0px 0px 0px 1px #FFF inset;			/*同上*/
	padding: 3px 10px 3px 7px;	/*上、右、下、左への余白*/
	color: #57bff0;		/*文字色*/
	border-top: 1px solid #cfcfcf;		/*上の線の幅、線種、色*/
	border-right: 1px solid #cfcfcf;	/*右の線の幅、線種、色*/
	border-bottom: 1px solid #cfcfcf;	/*下の線の幅、線種、色*/
	border-left: 3px solid #57bff0;		/*左の線の幅、線種、色*/
}
#main h4 {
	font-size: 100%;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#FFF), to(#ececec));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#FFF, #ececec);	/*線の幅、線種、色*/
	-webkit-box-shadow: 0px 0px 0px 1px #FFF inset;	/*内側への影。右・下・ぼかし幅・距離・色を設定*/
	box-shadow: 0px 0px 0px 1px #FFF inset;	/*上、右、下、左への余白*/
	color: #57bff0;		/*左の線の幅、線種、色*/
	padding-top: 3px;
	padding-right: 10px;
	padding-bottom: 0px;
	padding-left: 15px;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: thin;
	border-left-width: 3px;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: dotted;
	border-left-style: none;
	border-top-color: #cfcfcf;
	border-right-color: #cfcfcf;
	border-bottom-color: #33CCFF;
	margin-top: 15px;
	margin-bottom: 15px;
}
/*mainコンテンツの段落タグ設定*/
#main p {
	padding: 0.5em 10px 1em;	/*左から、上、左右、下への余白*/
}

/*サブコンテンツ、サイドコンテンツ
---------------------------------------------------------------------------*/
/*サブコンテンツ（左側ブロック）*/
#sub {
	float: left;	/*左側に回り込み*/
	width: 200px;	/*サブコンテンツ幅*/
	padding-bottom: 30px;
}
/*サイドコンテンツ（右側ブロック）*/
#side {
	float: right;
	width: 200px;
	padding-bottom: 30px;
}
/*2カラム時にサイドコンテンツを非表示にする設定*/
body.c2 #side {
	display: none;
}
/*sub,sideコンテンツ内のh2タグ設定*/
#sub h2,
#side h2 {
	font-size: 100%;
	text-align: center;	/*文字をセンタリング*/
	background-color: #FFF;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#f2f2f2), to(#FFF));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#f2f2f2, #FFF);	/*同上*/
	background-image: linear-gradient(#f2f2f2, #FFF);			/*同上*/
	border-top: 3px solid #57bff0;		/*上の線の幅、線種、色*/
	border-right: 1px solid #cfcfcf;	/*右の線の幅、線種、色*/
	border-bottom: 1px solid #cfcfcf;	/*下の線の幅、線種、色*/
	border-left: 1px solid #cfcfcf;		/*左の線の幅、線種、色*/
	-webkit-box-shadow: 0px 0px 0px 1px #FFF inset;	/*内側への影。右・下・ぼかし幅・距離・色を設定*/
	box-shadow: 0px 0px 0px 1px #FFF inset;			/*同上*/
	padding: 3px 0px;	/*上下、左右への余白*/
	color: #57bff0;	/*文字色*/
}
/*sub,sideコンテンツ内のbox1設定*/
#sub .box1,
#side .box1 {
	background-color: #eeeeee;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#f9f9f9), to(#eeeeee));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#f9f9f9, #eeeeee);	/*同上*/
	background-image: linear-gradient(#f9f9f9, #eeeeee);			/*同上*/
	border: 1px solid #cfcfcf;	/*枠線の幅、線種、色*/
	-webkit-box-shadow: 0px 0px 0px 1px #FFF inset;	/*内側への影。右・下・ぼかし幅・距離・色を設定*/
	box-shadow: 0px 0px 0px 1px #FFF inset;			/*同上*/
	padding: 5px;	/*ボックス内の余白*/
	margin-bottom: 1em;	/*ボックスの下にあけるスペース*/
}
/*見出しにbox1やメニューが繋がった場合に枠線が重複しない為の設定*/
#sub h2 + ul,
#side h2 + ul,
#sub h2 + .box1,
#side h2 + .box1 {
	border-top: none;
}
/*box1の中にメニューが入った場合に下に余分な余白が出るのをなくす設定*/
#sub .box1 > ul,
#side .box1 > ul {
	margin-bottom: 0;
}


/*sub,sideコンテンツ内のメニュー
---------------------------------------------------------------------------*/
/*メニューブロック全体の設定*/
#sub ul,
#side ul {
	border-top: 1px solid #cfcfcf;		/*上側の線の幅、線種、色*/
	border-right: 1px solid #cfcfcf;	/*右側の線の幅、線種、色*/
	border-left: 1px solid #cfcfcf;		/*左側の線の幅、線種、色*/
	margin-bottom: 1em;	/*メニューブロックの下にあけるスペース*/
}
/*メニュー１個ごとの設定*/
#sub ul li a,
#side ul li a {
	text-decoration: none;
	display: block;
	border-bottom: 1px solid #cfcfcf;	/*下側の線の幅、線種、色*/
	padding-left: 10px;
	-webkit-transition: 0.5s;	/*マウスオン時の移り変わるまでの時間設定。0.5秒。*/
	transition: 0.5s;			/*同上*/
	background: #FFF;	/*背景色*/
}
/*マウスオン時の設定*/
#sub ul li a:hover,
#side ul li a:hover {
	background-color: #57bff0;	/*背景色*/
	color: #FFF;	/*文字色*/
}

/*フッター設定
---------------------------------------------------------------------------*/
footer {
	clear: both;
	text-align: center;
	padding-top: 15px;
	padding-bottom: 15px;
	color: #FFF;	/*文字色*/
	background: #57bff0;	/*背景色*/
}
footer .pr {
	display: block;
	font-size: 80%;
}
footer a {
	text-decoration: none;
	color: #FFF;
}
footer a:hover {
	color: #FFF;
}

/*トップページのスライドショー
---------------------------------------------------------------------------*/
#mainimg {
	clear: left;
	width: 997px;
	height: 300px;
	position: relative;
	margin-bottom: 25px;
}
#mainimg .slide_file {
	display: none;
}
#slide_image {
	z-Index:2;
	position: absolute;
	left:0px;
	top:0px;
}
#slide_image2 {
	z-Index:1;
	position: absolute;
	left:0px;
	top:0px;
}

/*service.html内の製品紹介の各ブロック
---------------------------------------------------------------------------*/
/*各ボックスの設定*/
#main section.list article {
	border: 1px solid #CCC;	/*枠線の幅、線種、色*/
	border-radius: 6px;		/*角丸のサイズ*/
	margin-bottom: 1em;		/*ボックス間のスペース*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#FFF), to(#e3e3e3));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#FFF, #e3e3e3);	/*同上*/
	background-image: linear-gradient(#FFF, #e3e3e3);			/*同上*/
	-webkit-box-shadow: 0px 2px 5px #CCC, 0px 0px 0px 1px #FFF inset;	/*影の設定。右・下・ぼかし幅・色の設定, ＋内側への影を右・下・ぼかし幅・距離・色を設定*/
	box-shadow: 0px 2px 5px #CCC, 0px 0px 0px 1px #FFF inset;			/*同上*/
}
#main section.list article a {
	padding: 10px;	/*ボックス内の余白*/
	text-decoration: none;
	display: block;
	overflow: hidden;
	-webkit-transition: 0.5s;	/*マウスオン時の移り変わるまでの時間設定。0.5秒。*/
	transition: 0.5s;			/*マウスオン時の移り変わるまでの時間設定。0.5秒。*/
}
#main section.list article a:hover {
	background-color: #FFF;	/*マウスオン時のボックス色*/
}
/*ボックス内の段落タグ設定*/
#main section.list article p {
	padding: 0px;
	margin-left: 220px;	/*左の写真とのバランスをとって設定*/
}
/*ボックス内の写真設定*/
#main section.list article figure img {
	float: left;			/*画像を左へ回り込み*/
	background-color: #FFF;	/*画像の背景色。ここでは枠線と画像の間の色になります。*/
	padding: 5px;			/*余白。ここに上の行で設定した背景色が出ます。*/
	border: 1px solid #CCC;	/*枠線の幅、線種、色*/
	margin: 0px;
}
#led_p {
	margin: 10px;
}
/*ボックス内のh4タグ設定*/
#main section.list article h4 {
	background: transparent;
	-webkit-box-shadow: none;
	box-shadow: none;
	padding: 2px 0px 2px 10px;	/*上、右、下、左側への余白*/
	font-size: 100%;
	border-bottom: 1px solid #CCC;	/*下側の線の幅、線種、色*/
	margin-bottom: 0.5em;
	color: #57bff0;	/*文字色*/
}

/*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
/*ブロック全体の設定*/
#new{
	margin-bottom: 1.5em;
}

#new dl{
	overflow: auto;	/*高さ指定を超えるとiframe風にスクロールが出る設定。全部表示させたいならこの行と下のheightの行を削除。*/
	height: 150px;
	padding-left: 10px;
}
/*日付設定*/
#new dt {
	font-weight: bold;	/*太字にする設定。標準がいいならこの行削除。*/
	float: left;
	width: 8em;
}
/*記事設定*/
#new dd {
	border-bottom: 1px solid #d2d2d2;	/*下線の幅、線種、色*/
	padding-left: 8em;
}
#new dd img {
	vertical-align: middle;
}

/*テーブル１
---------------------------------------------------------------------------*/
.ta1 {
	width: 100%;
}
.ta1, .ta1 td, .ta1 th{
	border: 1px solid #CCC;	/*テーブルの枠線の幅、線種、色*/
	line-height: 2;
}
/*テーブル内の右側*/
.ta1 td{
	padding: 10px;
}
/*テーブル内の左側の見出し部分*/
.ta1 th{
	width: 140px;
	padding: 10px;
	text-align: left;
	background-color: #f1f1f1;	/*背景色*/
}
/*テーブル１行目に入った見出し部分*/
.ta1 th.tamidashi{
	width: auto;
	text-align: left;
	background-color: #bebebe;	/*背景色*/
}
/*テーブルのキャプション設定*/
.ta1 caption{
	padding: 10px;
	border-top: 1px solid #CCC;		/*上側の線の幅、線種、色*/
	border-right: 1px solid #CCC;	/*右側の線の幅、線種、色*/
	border-left: 1px solid #CCC;	/*左側の線の幅、線種、色*/
	text-align: left;
	background-color: #e9ddae;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#efe6c5), to(#e9ddae));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#efe6c5, #e9ddae);	/*同上*/
	background-image: linear-gradient(#efe6c5, #e9ddae);			/*同上*/
	font-weight: bold;	/*文字を太字にする設定*/
}
/*submitボタンの設定*/
input[type="submit"],
input[type="button"] {
	width: 250px;	/*ボタン幅*/
	padding: 10px;	/*ボタン内の余白*/
	margin-bottom: 20px;
	border-radius: 30px;	/*角丸のサイズ*/
	background-color: #57bff0;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#75c9f0), to(#57bff0));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#75c9f0, #57bff0);	/*同上*/
	background-image: linear-gradient(#75c9f0, #57bff0);			/*同上*/
	-webkit-box-shadow: 0px 2px 5px #bebebe;	/*影の設定。それぞれ右へ、下へ、ぼかし幅、色の設定。*/
	box-shadow: 0px 2px 5px #bebebe;			/*同上*/
	font-size: 14px;	/*文字サイズ*/
	color: #FFF;		/*文字色*/
	border: none;
}
/*submitボタンのマウスオン時の設定*/
input[type="submit"]:hover,
input[type="button"]:hover {
	background-color: #75c9f0;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#57bff0), to(#75c9f0));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#57bff0, #75c9f0);	/*同上*/
	background-image: linear-gradient(#57bff0, #75c9f0);			/*同上*/
}

/*PAGE TOP設定
---------------------------------------------------------------------------*/
#pagetop {
	clear: both;
}
#pagetop a {
	color: #FFF;		/*文字色*/
	font-size: 10px;	/*文字サイズ*/
	background-color: #57bff0;	/*背景色*/
	text-decoration: none;
	text-align: center;
	width: 10em;	/*ボックス幅*/
	display: block;
	float: right;
}
/*マウスオン時*/
#pagetop a:hover {
	background-color: #03C;
	color: #FFF;
}

/*その他
---------------------------------------------------------------------------*/
.look {
	background: #dcdcdc;
}
.mb1em {
	margin-bottom: 1em;
}
.mb05em {
	margin-bottom: 0.5em;
}
.clear {
	clear: both;
}
ul.disc {
	padding: 0em 25px 1em;
	list-style: disc;
}
.color1 {
	color: #0099FF;
}
.color2blue {
	color: #33CCFF;
}
.pr {
	font-size: 10px;
}
.btn {
	font-size: 13px;
}
.wl {
	width: 96%;
}
.ws {
	width: 50%;
}
.c {
	text-align: center;
}
.mini1 {
	font-size: 12px;
	line-height: 1.5;
}
figcaption {
	font-size: 11px;
}
#menubar_hdr {
	display: none;
}


#main.business p{
	padding: 0;
}
#slidertop {
  width: 100%;
  height: 500px;
  /* width: 80%; */
  margin: auto;
}
.slick-track{
	height: 100%;
}
.slick-list.draggable{
	height: 100%;
}
.bluetext{
  width: 100%;
  color: #57BFF0;
  font-size: 20px;
  line-height: 20px;
  margin: 24px 0 18px;
  font-weight: bold;
}

/* サムネイルスライダー */
#wrap {
  width: 80%;
  margin: 0 auto 20px;
}
#slider, #thumbnail_slider {
  margin: 0 auto 10px;
  position: relative;
  top: 0;
}
.slide-item img {
  width: 100%;
  object-fit: cover;
}
.thumbnail-item img {
  width: 98%;
  margin: 0 auto;
}
/* 例 */
.exsample{
	width: 100%;
  margin: 0 auto;
}
.exsample ul{
  display: flex;
  justify-content: center;
}
.exsample ul li{
  width: 40%;
  margin: 0 auto;
  text-align: center;
}
/* 横並びコンテンツ */
.business-content {
  width: 95%;
  margin: auto;
  display: flex;
  justify-content: space-between;
}
.business-content.ft .business-content_img{
	width: 346px;
	height: 346px;
	background: url(../img/business/business_09.webp) no-repeat center center;
	background-size: contain;
}
.show-room{
	display: flex;
	justify-content: space-between;
	margin-top: 20px;
}
.show-room img{
	width: 32.5%;
}
.construction-items{
	display: flex;
	justify-content: space-between;
}
.construction-items img{
	width: 32.5% !important;
	max-width: 32.5%;
}
.kanazawa-items{
	/* display: flex;
	justify-content: space-between; */
	width: 100%;
}
.kanazawa-items img{
	/* width: 33% !important;
	max-width: 33%; */
	width: 100%;
	vertical-align: top;
}
.kanazawa-image{
	width: 100%;
	vertical-align: top;
	margin-top: 10px;
}
.kanazawa-image img{
	width: 100%;
}
#main.business .business-content.ft p{
  width: calc(100% - 398px);
  padding: 0 0 0 52px;
}
#main.business small{
  display: inline-block;
  margin: 10px auto;
  line-height: 20px;
}
#main.business .yubicad{
	width: 95%;
	margin: 0 auto 15px;
	display: flex;
	justify-content: space-between;
	flex-direction: row-reverse;
	flex-wrap: wrap;
}
#main.business .yubicad .yubicad_img{
	width: 346px;
	height: 346px;
	background: url(../img/business/business_10.webp) no-repeat center center;
	background-size: contain;	
}
#main.business .yubicad p{
  width: calc(100% - 398px);
  padding: 0 52px 0 0;
}
#main.business .wi-fi{
	width: 95%;
	margin: 0 auto;
}
#main.business .ibow-wifi{
	width: 100%;
	margin: 10px 0;
	display: flex;
	justify-content: center;
	align-items: flex-start;
}
#main.business .ibow-wifi img{
	width: 80%;
	margin: 10px 0;
}
#main.business .exsample ul li img{
	width: 100%;
}
#main.business .transform{
	width: 95%;
	margin: 0 auto;
}
#main.business .transform-img{
	width: 95%;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	align-items: flex-start;
	margin: 20px auto;
}
#main.business .transform-img img{
	width: 31%;
	height: auto;
}
/* 3D */
#main.business .technology{
	width: 95%;
	margin: 0 auto 30px;
}
#main.business .technology .technology_items{
	width: 100%;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
#main.business .technology .technology_item{
	width: 32%;
	margin-top: 20px;
	margin-bottom: 10px;
}
#main.business .technology .technology_img1{
	background-image: url(../img/business/figure1.webp);
}
#main.business .technology .technology_img2{
	background-image: url(../img/business/figure2.webp);
}
#main.business .technology .technology_img3{
	background-image: url(../img/business/figure3.webp)
}
#main.business .technology .technology_img4{
	background-image: url(../img/business/figure4.webp);
}
#main.business .technology .technology_img5{
	background-image: url(../img/business/figure5.webp);
}
#main.business .technology .technology_img6{
	background-image: url(../img/business/figure6.webp);
}
#main.business .technology .technology_item div{
	background-size: cover;
	background-repeat: repeat;
	background-position: center center;
	height: 0;
	padding-bottom: 60%;
}
#main.business .technology .technology_right{
	text-align: right;
}
#main.business .technology p{
  padding: 0;
}

#main.business .future{
	width: 95%;
	margin: 0 auto 30px;
}

#main.business .future img{
	width: 100%;
	margin: 10px 0 0;
}

#main.business .phase{
	width: 95%;
	margin: 0 auto 30px;
}

#main.business .phase img{
	width: 100%;
	margin: 10px 0 0;
}


.business-content.sd img {
  width: calc(100% - 350px);
}
#main.business .business-content.sd p{
	width: 350px;
	padding: 0 0 0 40px;
}
section.ibow img {
    width: 100%;
}
/* ボタン */
#main.business .button{
  width: 250px;
  margin: 0 auto 50px;
  text-align: center;
}
#main.business .button a{
  display: inline-block;
  background: #57BFF0;
  padding: 5px 0 3px;
  width: 100%;
  color: #fff;
  font-size: 15px;
  border-radius: 20px;
  text-decoration: none;
}

#main.business .hojo1 {
  background: #57BFF0;
  display: inline-block;
  color: #fff;
  font-size: 14px;
  padding: 0 10px;
  margin-left: 20px;
}
#main.business .hojo2 {
  background: #57BFF0;
  display: inline-block;
  color: #fff;
  font-size: 14px;
  padding: 0 10px;
  margin-bottom: 15px;
}
#main.business .hojo3 {
  background: #57BFF0;
  color: #fff;
  font-size: 14px;
  padding: 0 10px;
  margin-bottom: 15px;
  margin: 0 auto 50px;
  text-align: center;
  width: 400px;
} 
.youtube{
    position: relative;
    padding-bottom: 56.25%; /* 16:9 アスペクト比 */
    height: 0;
    overflow: hidden;
}
.youtube iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.youtube.yubicad_youtube iframe {
    left: 50%;
    width: 95%;
    transform: translateX(-50%);
}

@media screen and (max-width: 768px) {
#slidertop {
	height: auto;
}
.slick-track{
	height: auto;
}
.slick-list.draggable{
	height: auto;
}
.business-content{
  display: block;
  width: 95%;
}
#main.business .business-content.ft p {
  width: 100%;
  padding: 0;
}
.exsample ul{
  display: block;
    width: 100%;
}
.exsample ul li {
  width: 100%;
}
.business-content.sd img {
  width: 100%;
}
.exsample img{
  width: 100%;
}
#main.business .exsample ul li img{
	width: 95%;
}
#main.business .business-content.sd p {
  width: 100%;
  padding: 0;
}
.business-content.ft .business-content_img{
	width: 100%;
	height: 0;
	padding-bottom: 75%;
	margin-bottom: 10px;
}
#main.business .yubicad .yubicad_img{
	width: 100%;
	height: 0;
	padding-bottom: 75%;
	margin-bottom: 10px;	
}
#main.business .yubicad p{
  width: 100%;
  padding: 0;	
}
#main.business .technology .technology_item{
	width: 48%;
	margin: 10px 0;
}
#main.business .technology .technology_item p{
	font-size: 12px;
}
#main.business .technology .technology_right{
	font-size: 12px;
}
#main.business .future{
	width: 95%;
}
#main.business .future img{
	margin: 0;
}
#main.business .phase{
	width: 95%;
}
#main.business .phase img{
	margin: 0;
}
}
@media screen and (max-width: 480px) {
#slidertop {
  width: 100%;
  /* width: 90%; */
}
#slidertop .slick-slide img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.show-room{
	margin-top: 10px;
}
.thumbnail-item img {
  height: 40px;
  object-fit: cover;
}
#main.business .hojo1 {
  display: block;
  font-size: 14px;
  padding: 0 10px;
  margin: 10px 0 0 0;
}

}
/* ---------------------------------------------------------------------------
	max-width: 480px
--------------------------------------------------------------------------- */
@media screen and (max-width: 480px) {
	
	/*bodyの直接の子要素のh1タグ（ページ最上段にあるh1）設定
	---------------------------------------------------------------------------*/
	body > h1 {
		display: none;
	}
	
	/*コンテナー（HPを囲むブロック）
	---------------------------------------------------------------------------*/
	#container {
		width: auto;
		margin-right: 6px;
		margin-left: 6px;
	}
	
	/*ヘッダー（サイト名ロゴが入ったブロック）
	---------------------------------------------------------------------------*/
	header {
		text-align: center;
	}
	/*h1ロゴの設定*/
	header h1 {
		padding: 20px 0px 20px 0px;	/*上、右、下、左側へあける余白*/
	}
	header h1 img {
		width: 70%;	/*画面に対して画像を70％の幅に*/
		height: auto;
	}
	
	/*上部のメインメニュー
	---------------------------------------------------------------------------*/
	/*メニューブロック全体の設定*/
	nav#menu ul {
		border-top: 1px solid #dcdcdc;	/*メニューブロックの上側の線の幅、線種、色*/
		margin-bottom: 20px;
	}
	/*メニュー１個ごとの設定*/
	nav#menu ul li {
		float: none;
		width: 100%;	/*メニュー幅*/
		margin-bottom: 0;
		border-right: none;
		border-bottom: 1px solid #dcdcdc;	/*メニューの下側の線の幅、線種、色*/
		box-sizing: border-box;
	}
	nav#menu ul li a {
		padding: 10px 0px;	/*メニュー内の余白。上下、左右。*/
	}
	/*最初のメニューの設定*/
	nav#menu ul li:first-child {
		border-left: none;
	}
	/*英語表記の設定*/
	nav#menu ul li a span {
		display: none;	/*表示させない設定*/
	}
	
	/*コンテンツ（main,subを囲むブロック）
	---------------------------------------------------------------------------*/
	#contents {
		width: auto;
	}
	
	/*contents-in,main,subコンテンツ
	---------------------------------------------------------------------------*/
	#contents-in, #main, body.c2 #main, #sub {
		float: none;
		width: auto;
	}
	
	/*sideコンテンツ
	---------------------------------------------------------------------------*/
	#side {
		display: none;	/*表示させない設定*/
	}
	
	/*トップページのメイン画像。表示させたいなら、style-m.cssの同じ箇所のタグをコピペする。
	---------------------------------------------------------------------------*/
	#mainimg {
		display: none;
	}
	
	/*トップページ内「更新情報・お知らせ」ブロック
	---------------------------------------------------------------------------*/
	section#new h1.open {
		background: url(../images/btn_minus.png) no-repeat right center, -webkit-gradient(linear, left top, left bottom, from(#75c9f0), to(#57bff0));
		background: url(../images/btn_minus.png) no-repeat right center, -webkit-linear-gradient(#75c9f0, #57bff0);
		background: url(../images/btn_minus.png) no-repeat right center, linear-gradient(#75c9f0, #57bff0);
	}
	section#new h1.close {
		background: url(../images/btn_plus.png) no-repeat right center, -webkit-gradient(linear, left top, left bottom, from(#75c9f0), to(#57bff0));
		background: url(../images/btn_plus.png) no-repeat right center, -webkit-linear-gradient(#75c9f0, #57bff0);
		background: url(../images/btn_plus.png) no-repeat right center, linear-gradient(#75c9f0, #57bff0);
	}
	/*ブロック全体の設定*/
	#new dl {
		height: 300px;
		padding: 0.5em 10px 0;
		/* margin-bottom: 30px; */
	}
	/*日付設定*/
	#new dt {
		float: none;
		width: auto;
	}
	/*記事設定*/
	#new dd {
		padding-left: 0;
	}
	
	/*テーブル１
	---------------------------------------------------------------------------*/
	/*テーブル内の右側*/
	.ta1 td{
		width: auto;
		padding: 2px;
	}
	/*テーブル内の左側の見出し部分*/
	.ta1 th{
		width: 100px;
		padding: 2px;
	}
	
	/*service.html内の一覧の各ブロック
	---------------------------------------------------------------------------*/
	/*ボックス内の段落タグ設定*/
	#main section.list article p {
		margin-left: 0;
	}
	/*ボックス内の写真設定*/
	#main section.list article figure img {
		width: 40%;
		height: auto;
		margin-right: 5px;
	}
	
	/*その他
	---------------------------------------------------------------------------*/
	/*<body class="s-n">指定の場合にsubブロックも表示させない設定*/
	body.s-n #sub {
		display: none;
	}
	/*幅一杯に画像を表示させる*/
	img.wa {
		height: auto;
		width: 100%;
	}
	/*メニューアイコン設定*/
	#top #menubar_hdr {
		display: none;
	}
	#menubar_hdr {
		display: inline;
		position: absolute;
		top: 0px;
		right: 10px;
		background-image: -webkit-gradient(linear, left top, left bottom, from(#fbfbfb), to(#e5e5e5));
		background-image: -webkit-linear-gradient(#fbfbfb, #e5e5e5);
		background-image: linear-gradient(#fbfbfb, #e5e5e5);
		padding: 10px;
		border: 1px solid #cfcfcf;
		border-radius: 0px 0px 6px 6px;
	}


}


/* ---------------------------------------------------------------------------
	min-width: 481px and max-width: 800px
--------------------------------------------------------------------------- */
@media screen and (min-width: 481px) and (max-width: 800px) {
	
	/*bodyの直接の子要素のh1タグ（ページ最上段にあるh1）設定
	---------------------------------------------------------------------------*/
	body > h1 {
		display: none;
	}
	
	/*コンテナー（HPを囲むブロック）
	---------------------------------------------------------------------------*/
	#container {
		width: auto;
		margin-right: 6px;
		margin-left: 6px;
	}
	
	/*ヘッダー（サイト名ロゴが入ったブロック）
	---------------------------------------------------------------------------*/
	header {
		text-align: center;
	}
	/*h1ロゴの設定*/
	header h1 {
		padding: 20px 0px 20px 0px;	/*上、右、下、左側へあける余白*/
	}
	
	/*上部のメインメニュー
	---------------------------------------------------------------------------*/
	/*メニューブロック全体の設定*/
	nav#menu ul {
		border-top: 1px solid #dcdcdc;	/*メニューブロックの上側の線の幅、線種、色*/
	}
	/*メニュー１個ごとの設定*/
	nav#menu ul li {
		float: left;
		width: 50%;	/*メニュー幅*/
		margin-bottom: 0;
		border-bottom: 1px solid #dcdcdc;	/*メニューの下側の線の幅、線種、色*/
		box-sizing: border-box;
	}
	nav#menu ul li a {
		padding: 10px 0px;	/*メニュー内の余白。上下、左右。*/
	}
	/*最初のメニューの設定*/
	nav#menu ul li:first-child {
		border-left: none;
	}
	/*奇数番目のメニューの設定*/
	nav#menu ul li:nth-child(odd) {
		border-left: 1px solid #dcdcdc;	/*奇数番目のメニューの左側へ入れる線の設定*/
	}
	/*英語表記の設定*/
	nav#menu ul li a span {
		display: none;	/*表示させない設定*/
	}
	/*最後のメニューの設定*/
	nav#menu ul li:last-child {
		margin-bottom: 20px;
	}
	
	/*コンテンツ（main,subを囲むブロック）
	---------------------------------------------------------------------------*/
	#contents {
		width: auto;
	}
	
	/*contents-in,main,subコンテンツ
	---------------------------------------------------------------------------*/
	#contents-in, #main, body.c2 #main, #sub {
		float: none;
		width: auto;
	}
	
	/*sideコンテンツ
	---------------------------------------------------------------------------*/
	#side {
		display: none;	/*表示させない設定*/
	}
	
	/*トップページのメイン画像
	---------------------------------------------------------------------------*/
	#mainimg {
		height: auto;
		width: 100%;
	}
	#slide_image {
		height: auto;
		width: 100%;
		position: relative;
	}
	#slide_image2 {
		height: auto;
		width: 100%;
		position: absolute;
		left:0px;
		top:0px;
	}
	
	/*その他
	---------------------------------------------------------------------------*/
	/*<body class="s-n">指定の場合にsubブロックも表示させない設定*/
	body.s-n #sub {
		display: none;
	}
	/*幅一杯に画像を表示させる*/
	img.wa {
		height: auto;
		width: 100%;
	}
	/*メニューアイコンを非表示に*/
	#menubar_hdr {
		display: none;
	}


}

/*メインブロック内のbox1タグ設定
---------------------------------------------------------------------------*/
#main2 {
	float: right;	/*メインコンテンツを右(right)に回り込み*/
	width: 700px;	/*メインコンテンツ幅*/
	padding-top: 30px;
	padding-bottom: 30px;
}
#main2 .box1 {
	padding: 10px;	/*ボックス内の余白*/
	overflow: hidden;
	width: 674px;
	border: 3px double #d2d2d2;	/*枠線の幅、線種、色*/
	margin-bottom: 1em;
}
#main section section p strong {
	text-align: right;
}

/*service.html内の各ブロック（※タイプ１）
---------------------------------------------------------------------------*/
/*各ボックスの設定*/
#main section.list1 section {
	height: 80px;	/*ボックスの高さ*/
	width: 47%;	/*ボックスの幅*/
	float: left;
	line-height: 1.6;
	margin-left: 14px;
	overflow: hidden;
	position: relative;
	margin-bottom: 50px;
}
/*ボックス内の段落タグ設定*/
#main section.list1 section p {
	padding: 0px;
}
/*ボックス内のh4タグ設定*/
#main section.list1 section h4 {
	font-size: 100%;
	color: #001ada;	/*文字色*/
}
/*写真の設定*/
#main section.list1 section figure {
	padding: 5px;	/*写真と枠線との余白設定*/
	margin-bottom: 5px;	/*画像の下に少し余白を空ける設定*/
	border: 1px solid #CCC;	/*画像の枠線の幅、線種、色*/
}
#main section.list1 section figure img {
	width: 100%;
	height: auto;
}
/*「もっと詳しく」ボタン設定*/
#main section.list1 section p.more {
	position: absolute;
	right: 0px;		/*ボックスに対して右から0pxの場所に配置*/
	bottom: 0px;	/*ボックスに対して下から0pxの場所に配置*/
}
#main section.list1 section p.more a {
	color: #FFF;	/*文字色*/
	text-decoration: none;
	-webkit-transition: 0.5s;	/*マウスオン時の移り変わるまでの時間設定。0.5秒。*/
	transition: 0.5s;			/*同上*/
	background-color: #3399FF;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#0000CC), to(#3399ff));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#0000CC, ##3399ff);	/*同上*/
	background-image: linear-gradient(#00CCFF, #3399ff);			/*同上*/
	padding: 2px 15px;	/*上下、左右への余白*/
	font-size: 11px;	/*文字サイズ*/
	border-radius: 4px;	/*各丸のサイズ*/
}
#main section.list1 section p.more a:hover {
	background-color: #000099;
}
/*Googlemapの設定*/

.ggmap {
position: relative;
padding-bottom: 56.25%;
padding-top: 30px;
height: 0;
overflow: hidden;
}
 
.ggmap iframe,
.ggmap object,
.ggmap embed {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}

/*スタッフ詳細ページ　staff.html
---------------------------------------------------------------------------*/
/*写真とテーブルを囲むボックス*/
#main .staff {
	margin-right: 10px;
	margin-left: 10px;
}
/*左側ボックス*/
#main .staff .left {
	float: left;	/*左に回り込み*/
	width: 370px;	/*幅*/
	padding-bottom: 15px;
}
#main .staff .left2 {
	float: left;	/*左に回り込み*/
	width: 190px;	/*幅*/
	padding-bottom: 15px;
}
#main .staff .left p {
	padding: 0px;
}
/*右側ボックス*/
#main .staff .right {
	width: 380px;	/*幅*/
	float: right;	/*右に回り込み*/
	padding-bottom: 15px;
}
#main .staff .right2 {
	width: 520px;	/*幅*/
	float: right;	/*右に回り込み*/
	padding-bottom: 15px;
}
/*テーブル内の左側*/
#main .staff .right .ta1 th {
	width: 100px;	/*幅*/
}
#main section .list article a .left {
	width: 370px;
	float: left;
}
#main section .list article a .right {
	width: 380px;
	float: left;
	margin-left: 10px;
}

/* クラス設定 */

.clr {
    clear: both;
    overflow: hidden;
    width: 1px;
    height: 1px;
    margin: 0 -1px -1px 0;
    border: 0;
    padding: 0;
    font-size: 0;
    line-height: 0;
}
#center {
	text-align: center;
	margin-bottom: 20px;
}
