	@charset "utf-8";

/*google fontsの読み込み*/
@import url('https://fonts.googleapis.com/css?family=Poiret+One&display=swap');
@import url('https://use.fontawesome.com/releases/v5.6.1/css/all.css');

/*slide.cssの読み込み*/
@import url(slide.css);
@import url(menu.css);


html {
  font-size: 82.5%;
  scroll-behavior: smooth;
	/*animation: fadeIn 2s ease 0s 1 normal;*/
	/*-webkit-animation: fadeIn 2s ease 0s 1 normal;*/
}
/*
@keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}

@-webkit-keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}
*/
/*全端末（PC・タブレット・スマホ）共通設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/

/*全体の設定
---------------------------------------------------------------------------*/
body,html {width: 100%;height: 100%;}
body {
	margin: 0px;
	padding: 0px;
	color: #333;	/*全体の文字色*/
	font-family:"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;	/*フォント種類*/
	font-size: 16px;
	line-height: 2;		/*行間*/
	background: #eaf4fc;
	-webkit-text-size-adjust: none;
}
h1,h2,h3,h4,h5,p,ul,ol,li,dl,dt,dd,form,figure,form,input,textarea {margin: 0px;padding: 0px;font-size: 100%;font-weight: normal;}

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: #333;		/*リンクテキストの色*/
	transition: 0.4s;	/*マウスオン時の移り変わるまでの時間設定。0.4秒。*/
}
a:hover {
	color: #448db3;
	text-decoration: none;
}

ul {list-style-type: none;}



#container {
	position: fixed;
	width: 100%;
	height: 100%;
}

.office #container {
	background: #fffffc;
}

.works #container {
  background: #fffffc;
}
.link #container {
	background: url(../images/back1.jpg) no-repeat center center / cover;
}
.contact #container {
	background: #e4e9e5;
}
.business #container {
	background: url(../images/back2.jpg) no-repeat center center / cover;
}
.corona #container {
	/*background: url(../images/back3.jpg) no-repeat center center / cover;*/
  background: #fffffc;
}

#contents {
	height: 100%;
	width: 100%;
}

.home #contents {
	height: auto;
	position: absolute;
	width: 100%;
	bottom: 0px;	/*下からの配置指定*/
	right: 0%;		/*右からの配置指定*/
}

/*header（大きな端末用：左ブロック）
---------------------------------------------------------------------------*/
/*headerブロック*/
header.pc {
	position: fixed;	/*スクロールしても固定表示させる指定*/
	left: 0px;
	top:0px;
	z-index: 100;
	width: 60px;
	height: 100%;		/*高さ*/
	border-right: 1px solid #448db3;	/*右側の線の幅、線種、色*/
	transition: 1s;	/*hove時に１秒かけて動く*/
	/*background-color: rgba(68,141,179,0.5);	/*背景色68,141,179は、リンクカラーをrgb値にしたもの。0.5は色が50%出た状態。*/
  background-color: rgba(137,120,88,0.5);	/*肥後煤竹 ひごすすたけ*/
  /*137 G:120 B:88*/
}
/*マウスオン時のheaderブロック*/
header.pc:hover {
	width: 14%;
	overflow: auto;
	/*background-color: rgba(68,141,179,0.5);	*/
  background-color: rgba(90,83,89,0.6);/*藤煤竹 ふじすすたけ*/

}
/*ロゴ画像ブロック*/
header.pc .logo {
	text-align: center;	/*内容をセンタリング*/
	 /*border-bottom: 1px solid #448db3;	/*下線の幅、線種、色*/
	height: 100px;	/*高さ*/
  border: none;
}
header.pc .logo img {
	width: 100px;	/*画像の幅。マウスオン時に同じ大きさを保つ為。*/
}
/*header内のp(段落)タグ*/
header.pc p {
	padding: 10px;	/*余白*/
}

/*メインメニュー
---------------------------------------------------------------------------*/
/*メニュー１個あたりの設定*/
#menubar li {
	font-size: 12px;
	position: relative;
  overflow:hidden;
}
#menubar li a {
	display:  block;text-decoration: none;
	/*border-bottom: 1px solid #448db3;*/
  border-bottom: 1px solid #cbb994;
  /*R:234 G:244 B:252	*/
	width: auto;
	height: 40px;	/*高さ*/
	padding-left: 46px;	/*左に空ける余白*/
}
/*マウスオン時*/
header:hover #menubar li a:hover {
	background-color: #448db3;
	color: #fff;

}


/*現在表示中メニュー（current）*/
#menubar li.current a {
	background-color: rgba(68,141,179,0.5);
}
/*テキスト*/
#menubar li a span {
	display: none;	/*通常時は非表示*/
  visibility: none;
}

/*マウスオン時のテキスト*/
header:hover #menubar li a span {
	display: block;
	padding-top: 10px;
	color: #fff;
  /*visibility: visible;*/
}

/*メニュー用アイコン設定（menu1〜memu4までの共通設定）*/
.menuimg a {
	display: inline-block;
	/*background-image: url(../images/icon.png);*/
	background-repeat: no-repeat;
	background-size: 36px 36px;	/*実際のアイコン画像（icon.png）全体の大きさの幅、高さのそれぞれ「半分」。解像度を高くするため半分の数字にしています。*/
	background-position: left;
}
/*menu1*/
.menu1 a {
	background-image: url(../images/icon-home.png);
}
/*menu2*/
.menu2 a {
	background-image: url(../images/icon-office.png);
}
/*menu3*/
.menu3 a {
	background-image: url(../images/icon-work.png);
}
/*menu4*/
.menu4 a {
	/**background-image: url(../images/icon-corona.png);*/
	background-image: url(../images/icon-info.png);
	/*background-position: 20px -160px;	*/
}
/*menu5*/
.menu5 a {
	background-image: url(../images/icon-contact.png);
}
/*スマホ用メニューを表示させない*/
/*#menubar-s {display: none;}*/
/*３本バーアイコンを表示させない*/
/*#menubar_hdr {display: none;}*/


/*facebookやtwitterなどのアイコンブロック
---------------------------------------------------------------------------*/
/*アイコンを囲むブロック全体の設定*/
header .icon {
	text-align: center;	/*内容をセンタリング*/
	/*border-bottom: 1px solid #448db3;	/*下線の幅、線種、色*/
	padding: 10px 0;	/*上下、左右への余白*/
}
/*アイコン１個あたりの設定*/
header .icon li {
	display: inline;	/*横並びにさせる指定*/
}
/*アイコン画像の設定*/
header .icon img {
	width: 20%;		/*画像の幅*/
}

/*mainブロック
---------------------------------------------------------------------------*/
/*アニメーション設定------------------------*/
@keyframes main {
/*0コマ目*/
0% {
	opacity: 0;
	top: 20px;
}
/*100コマ目*/
100% {
	opacity: 1;
	top: 0px;
}
}
/*mainブロック*/
#main {
	overflow: auto;
	padding-top: 2%
	padding-right:5% ;
	padding-bottom:0;
	padding-left: 180px;
	height: 98%;				/*高さ*/

  /*
	animation-duration: 0.5S;
	animation-fill-mode: both;
	animation-name: main;
	animation-delay: 0.8s;
  */
  position: relative;
}
/*h2タグ*/
#main h2 {
	clear: both;
	margin-bottom: 20px;	/*見出しの下に空けるスペース*/
	font-size: 24px;
	letter-spacing: 0.2em;	/*文字間隔を少し広くとる設定*/
	color: #448db3;
	text-shadow: 1px 1px 2px #fff;	/*テキストの影。右へ、下へ、ぼかし幅、色。*/
}
/*h2タグの１文字目への指定*/
#main h2::first-letter {
	border-left: 3px solid #448db3;	/*左の線の幅、線種、色*/
	padding-left: 20px;				/*線と文字の間の余白*/
}
/*h2タグにclass="title"をつけたタイプ。大見出し。*/
#main h2.title {
	font-family: 'Poiret One';	/*冒頭のgoogle fontsの指定*/
	font-size: 60px;
	margin-bottom: 40px;		/*見出しの下に空けるスペース*/
	border-bottom: 1px solid #448db3;	/*下線の幅、線種、色*/
}
#main h2.title::first-letter {
	border-left: none;
	padding-left: 0;
}
/*h2タグにclass="title"をつけたタイプ内にあるspanタグ*/
#main h2.title span {
	display: block;
	font-size: 15px;
	float: right;		/*右に回り込み*/
	margin-top: 60px;	/*上に空ける余白。上下のバランスをここでとります。*/
}
/*h3タグ*/
#main h3 {
	clear: both;
	margin-bottom: 20px;	/*見出しの下に空けるスペース*/
	font-size: 20px;
}

#main h4{
  clear: both;
}
#main h5{
  clear: both;
}

/*段落(p)タグ*/
#main p {
	padding: 0 10px 10px;	/*上、左右、下への余白*/
}
/*他。微調整。*/
#main p + p {
	margin-top: -5px;
}
#main h2 + p,
#main h3 + p {
	margin-top: -10px;
}
#main section + section {
	clear: both;
	/*padding-top: 40px;*/
}

/*listブロック（works.htmlで使用）
---------------------------------------------------------------------------*/
/*各ボックスの指定*/
.list {
	position: relative;
	float: left;	/*左に回り込み*/
	width: 20%;
	margin-left: 2.5%;
	margin-bottom: 20px;
	background: #000;
	color: #fff;
}
.list a {
	display: block;
	text-decoration: none;
	color: #fff;
}
/*マウスオン時*/
.list a:hover {
	color: #fff;
}

.list a::after {
	content: "→";
	position: absolute;
	right: 10px;
	top: 10px;
	font-size: 12px;
	line-height: 30px;
	width: 30px;
	border-radius: 50%;
	background: #ccc;
	color: #000;
	text-align: center;
}
/*figure画像*/
.list a figure {
	opacity: 0.9;
}
/*マウスオン時のfigure画像*/
.list a:hover figure {
	opacity: 1;
}
/*h4タグ*/
.list h4 {
	position: absolute;
	bottom: 0px;
	left: 0px;		/*左からの配置場所指定。*/
	width: 100%;
	background: #000;	/*背景色（古いブラウザ用）*/
	background: rgba(0,0,0,0.1);	/*背景色。0,0,0は黒の事で0.5は色が50%出た状態。*/
	text-align: center;
	padding: 10px 0;
  color: white;
}

.left{
  float: left;
  margin: 10px;

}

.listrow{
  list-style: none;
  overflow: hidden;
}
.listrow li {
  width: 18%;
  display: inline-block;
  height: 100%;
  font-size: 80%;
  vertical-align: top;
  /*margin-right: 2px;*/
}
.listrow{
  list-style: none;
  overflow: hidden;

}
.listsmallrow{
  margin-top: 20px;
  margin-bottom: 20px;
}
.listsmallrow li {
  width: 40%;
  display: inline-block;
  height: 100%;
  font-size: 90%;
  vertical-align: top;
  margin: 4px;
}
.listsmallrow li p{
  display: inline-block;
}

.imagecap{
  position:absolute;
  right:0;
  bottom: 0;

}
.smallimage{
  width:100px;
  float: left;
}


/*footerブロック
---------------------------------------------------------------------------*/
footer {
	clear: both;
	text-align: right;
	padding: 30px 0;
}
.home footer {padding-bottom: 10px;}
footer a {text-decoration: none;}

/*「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
/*見出しを含まないお知らせブロック*/
#new dl {
	height: 60px;		/*高さ*/
	overflow: hidden;	/*高さを超えるコンテンツ量部分は非表示に*/
}
/*ブロックのマウスオン時*/
#new dl:hover {
	overflow: auto;	/*スクロールバーを自動で表示*/
}
/*日付設定*/
#new dt {
	float: left;	/*左に回り込み*/
	width: 9em;
	letter-spacing: 0.1em;	/*文字間隔を少しだけ広くとる設定*/
}
/*記事設定*/
#new dd {
	padding-left: 9em;	/*左に空ける余白*/
}

#new h2{
  margin-bottom: 3px;	/*見出しの下に空けるスペース*/
  font-size: 18px;
  letter-spacing: 0.1em;	/*文字間隔を少し広くとる設定*/
}

#banner img{
  width:24%;
}
#banner h2{
  margin-bottom: 3px;	/*見出しの下に空けるスペース*/
  font-size: 18px;
  letter-spacing: 0.1em;	/*文字間隔を少し広くとる設定*/
}

#banner div{
  padding-bottom: 1em;
}
/*テーブル
---------------------------------------------------------------------------*/
/*テーブル１行目に入った見出し部分（※caption）*/
.ta1 caption {
	border: 1px solid #333;
	border-bottom: none;	/*下線だけ消す*/
	text-align: left;		/*文字を左寄せ*/
	font-weight: bold;		/*太字に*/
	padding: 10px;
  background-color: white;
}
/*テーブルの見出し（※tamidashi）*/
.ta1 th.tamidashi {
	width: auto;
	text-align: left;	/*左よせ*/
}
/*ta1設定*/
.ta1 {
	table-layout:auto;
	width: 100%;
	margin: 0 auto 20px;
}
.ta1, .ta1 td, .ta1 th {
	word-break: break-all;
	border: 1px solid #333;
	padding: 10px;


  /*background-color: white;*/
}
/*ta1の左側ボックス*/
.ta1 th {
	/*width: 140px*/;
	text-align: center;
  background-color: rgb(233,228,212,0.2);

}

.ta2 {
	margin: 0 auto 10px;
  background-color: white;
}
.ta2, .ta2 td, .ta2 th {
	word-break: break-all;
	border: 1px solid gray;
	padding: 4px;
}

.ta2 th{
  font-style:normal;
  font-weight: normal;
  background:#EFEFEF;
}


/*フォーム関連
---------------------------------------------------------------------------*/
/*ボタン（btn）*/
input[type="submit"].btn,
input[type="button"].btn,
input[type="reset"].btn {
	padding: 5px 20px;
	border-radius: 3px;
	background: #eee;
}
/*マウスオン時のボタン（btn）設定*/
input[type="submit"].btn:hover,
input[type="button"].btn:hover,
input[type="reset"].btn:hover {
	background: #fff;
}
/*input,textarea共通*/
input,textarea {
	outline: none;background: transparent;
	border: 1px solid #999;	/*枠線の幅、線種、色*/
}
/*input,textareaのフォーカス時*/
input:focus,textarea:focus {
	border: 1px solid #000;	/*枠線の幅、線種、色*/
}

/*checkブロック。赤い注意書きブロックです。
---------------------------------------------------------------------------*/
p.check {
	background: #ff0000;
	color:#fff;
	padding: 10px 25px !important;
	margin-bottom: 20px;
}
p.check a {color: #fff;}



/*PAGE TOP（↑）設定
---------------------------------------------------------------------------*/
/*トップページでは非表示に。*/
.home .nav-fix-pos-pagetop a {
	display: none;
}
/*設定*/
.nav-fix-pos-pagetop a {
	display: block;text-decoration: none;text-align: center;z-index: 100;position: fixed;
	width: 40px;		/*ボタンの幅*/
	line-height: 40px;	/*ボタンの高さ*/
	bottom: 20px;		/*ウィンドウの下から20pxの場所に配置*/
	right: 3%;			/*ウィンドウの右から3%の場所に配置*/
	background: #448db3;
	color: #fff;
	border-radius: 50%;	/*円形にする指定*/
}
/*マウスオン時の背景色*/
.nav-fix-pos-pagetop a:hover {
	background: #fff;
	color: #448db3;
}

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

/*ul.disc,olタグ
---------------------------------------------------------------------------*/
ul.disc {
	list-style: disc;
	padding: 0 20px 20px 45px;
}
ol {
	padding: 0 20px 20px 45px;
}

/*box
---------------------------------------------------------------------------*/
.box {
	background: #fff;				/*背景色（古いブラウザ用）*/
	background: rgba(255,255,255,0.5);	/*背景色。255,255,255は白の事で0.5は色が50%出た状態の事。*/
	padding: 5%;
	margin-bottom: 30px;			/*ボックスの下に空けるスペース*/
	border: 1px solid #448db3;		/*線の幅、線種、色（古いブラウザ用）*/
}

/*その他
---------------------------------------------------------------------------*/
.look {background: #000;padding: 5px 10px;border-radius: 4px;border: 1px solid #666;color: #fff;}
.mb15,.mb1em {margin-bottom: 15px !important;}
.mb30 {margin-bottom: 30px !important;}
.clear {clear: both;}
.color1, .color1 a {color: #448db3 !important;}
.pr {font-size: 10px;}
.wl {width: 96%;}
.ws {width: 50%;}
.c {text-align: center;}
.r {text-align: right;}
.l {text-align: left;}
.fl {float: left;}
.fr {float: right;}
.mini1 {font-size: 11px;display: inline-block;line-height: 1.5;}
.sh {display: none;}
#pagetop {display: block;margin-top: -2%;padding-top: 2%;}



#checkbox-finished{
  position: static;

}


/*--------------------------------
/  吹き出し
/----------------------------------*/
/*クエスチョンマーク*/
.fukidashi{
	color:#fff;
	font-weight:bold;
	text-align:center;
	text-decoration:none;
	display:inline-block;
	width:18px;
	height:18px;
	background:#69a344;
	font-size:90%;
	-moz-border-radius:8px;
	-webkit-border-radius:8px;
	border-radius:8px;
	position:relative;	/*吹き出しの表示位置指定の基準とするため追加*/
}

/* Easy CSS Tooltip - by Koller Juergen [www.kollermedia.at] */
.fukidashi:hover {background:#dc0000; } /*BG color is a must for IE6*/

.fukidashi.tooltip span {
	display:none;
	padding:3px 3px;
	width:200px;		/*吹き出しの幅を200pxに変更*/
}

.fukidashi.tooltip:hover span{
	display:inline;
	position:absolute;
	background:#38b48b;
	color:#fff;
	bottom:25px;	/*位置指定追加。クエスチョンマークの下端から、吹き出しの下端を25px上げる*/
	left:-100px;			/*位置指定追加。吹き出しの幅の半分を左に移動させる*/
	/*アニメーションの制御設定*/
	-moz-animation: bubbleUp 0.2s 1;
	-webkit-animation: bubbleUp 0.2s 1;
	-o-animation: bubbleUp 0.2s 1;
	animation: bubbleUp 0.2s 1;
}

/*アニメーションの内容*/
@-moz-keyframes bubbleUp {
0% {bottom:15px; opacity:0;}
100% {bottom:25px; opacity:1;}
}
@-webkit-keyframes bubbleUp {
0% {bottom:15px; opacity:0;}
100% {bottom:25px; opacity:1;}
}
@-o-keyframes bubbleUp {
0% {bottom:15px; opacity:0;}
100% {bottom:25px; opacity:1;}
}
@keyframes bubbleUp {
0% {bottom:15px; opacity:0;}
100% {bottom:25px; opacity:1;}
}

/*吹き出しの足*/
.fukidashi.tooltip:hover span:after {
	content: "";
	display: block;
	width:0;
	height:0;
	border-top:8px solid #dc0000;
	border-left:8px solid transparent;
	border-right:8px solid transparent;
	position: absolute;
	left: 100px;
	bottom:-8px;
}
.tips {
	background: #d6e9ca;
	font-size: 80%;
	color: #000;
	padding: 0.3rem 0.6rem;
}
/* tippy override */
.tippy-tooltip {
  font-size: 1.4rem;
  padding: 0.3rem 0.6rem;
  background:#336699;
}



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

  /*headerブロック*/
  header.sh {
	   background-color: rgba(90,83,89,0.6);	/*背景色68,141,179は、リンクカラーをrgb値にしたもの。0.5は色が50%出た状態。*/
   }
   /*ロゴ画像ブロック*/
   header.sh .logo {
	    width: 40px;	/*ロゴ画像の幅*/
      border: none;
    }

/*メインメニュー
---------------------------------------------------------------------------*/
/*アニメーションのフレーム設定。全100コマアニメーションだと思って下さい。
透明(opacity: 0;)から色をつける(opacity: 1;)までの指定。*/
@keyframes menubar {
	0% {opacity: 0;}
	100% {opacity: 1;}




}
/*スマホ用メニューブロック*/
#menubar-s {
	display: block;
	position: fixed;
	z-index: 3;
	top: 0px;
	width: 100%;
	height: 100%;
	overflow: auto;
	background: rgba(0,0,0,0.8);
	animation-name: menubar;		/*上のkeyframesの名前*/
	animation-duration: 0.5s;		/*アニメーションの実行時間。0.5秒。*/
	animation-fill-mode: both;		/*待機中は最初のキーフレームを、完了後は最後のキーフレームを維持*/
	border-top: 1px solid #fff;		/*上の線の幅、線種、色*/
}
/*navブロックのみの追加指定*/
#menubar-s nav {
	border-bottom: 1px solid #fff;	/*下の線の幅、線種、色*/
	overflow: auto;
}
/*メニュー１個あたりの設定*/
#menubar-s nav li a {
	display: block;text-decoration: none;width: 100%;
	border-bottom: 1px solid #fff;	/*下の線の幅、線種、色*/
	font-size: 16px;
	height: 100px;		/*高さ*/
	height: 60px;		/*高さ*/
	color: #fff;
}
/*最後のnavメニューの下線を消す*/
#menubar-s nav li:last-child a {
	border-bottom: none;
}
/*テキスト*/
#menubar-s nav li a span {
	display: block;
	padding-top: 15px;	/*上に空ける余白。上下のバランスをとります。*/
	padding-left: 80px;	/*左に空ける余白*/
}
/*menu1*/
.menu1 a {
	/*background-position: 20px 0px;*/
}
/*menu2*/
.menu2 a {
	/*background-position: 20px -60px;*/
}
/*menu3*/
.menu3 a {
	/*background-position: 20px -120px;*/
}
/*menu4*/
.menu4 a {
	/*background-position: 20px -180px;*/
}
/*menu5*/
.menu5 a {
	/*background-position: 20px -240px;*/
}
  /*PC用メニューを非表示にする*/
  #menubar {display: none;}
  #menubar_hdr {
	   display: block;
	    position: fixed;z-index: 50;
	    top: 2px;
	    right: 2px;
  }
    /*アイコン共通設定*/
  #menubar_hdr.close,
  #menubar_hdr.open {
	   width: 40px;
	   height: 40px;
  }
  /*三本バーアイコン*/
  #menubar_hdr.close {
	   background: rgba(90,83,89,0.6)  url(../images/icon_menu.png) no-repeat center top/50px;
  }
  /*閉じるアイコン*/
  #menubar_hdr.open {
	   background: rgba(90,83,89,0.6)  url(../images/icon_menu.png) no-repeat center bottom/50px;
	    top: 5px;	/*配置場所の再指定*/
      pointer-events: auto;
      visibility: visible;
      opacity: 1;
      transform: translateY(0);
      transition: opacity 350ms ease,
                  transform 250ms ease;
    }






/*facebookやtwitterなどのアイコンブロック
---------------------------------------------------------------------------*/
/*アイコンを囲むブロック全体の設定*/
header .icon {
	clear: left;
	border-bottom: 1px solid #fff;	/*下の線の幅、線種、色*/
}
/*アイコン画像の設定*/
header .icon img {
	width: 50px;
}

/*mainブロック
---------------------------------------------------------------------------*/
/*mainブロック*/
#main {
	padding-left: 3%;
	padding-right: 3%;
}
/*h2タグ*/
#main h2 {
	font-size: 20px;
	letter-spacing: normal;	/*文字間隔を標準に戻す*/
}
/*h2タグにclass="title"をつけたタイプ。大見出し。*/
#main h2.title {
	font-size: 30px;
	margin-bottom: 20px;	/*見出しの下に空けるスペース*/
}
/*h2タグにclass="title"をつけたタイプ内にあるspanタグ*/
#main h2.title span {
	margin-top: 20px;	/*上に空ける余白。上下のバランスをここでとります。*/
}

footer {padding-bottom: 100px;}
footer .pr {display: block;}
/*「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
/*見出しを含まないお知らせブロック*/
#new dl {
	overflow: auto;
}
.sh {display:block;}
.pc {display:none;}


#banner img{
  width:48%;
}
.list{
  width: 45%;
}
/*--------------------------------
/ 図枠
/----------------------------------*/
.fig-frame{
	border: 2px;
	max-width: 100%;
  display: flex;
  justify-content: space-between;	

}
.fig-frame img{
	border: 10px;
	max-width: 100%;
	vertical-align: bottom;
	max-height: 100%;
	width: auto;
	height: auto;
  margin: 10px;
  padding: 10px;
}

.fig-frame-half{
	border: 2px;


}
.fig-frame-half img{
	border: 10px;
	max-width: 40%;
	vertical-align: bottom;
	max-height: 100%;
	width: auto;
	height: auto;
  margin: 10px;
  padding: 10px;
}

.one-box{
	overflow: hidden;
	width:100%;
	height:auto;
}
.two-boxes{
	width:100%;
	height:auto;
	float: left;
}
.two-boxes img{
	border: 10px;
	max-width: 100%;
	vertical-align: bottom;
	max-height: 100%;
	width: auto;
	height: auto;
	float: left;
}
/*
.two-boxes img::after{
	float: none;
	overflow:  hidden;
}
*/

.fig-frame p{
    color: black;
}

.auto-box{
    height:auto;
    width:100%;
    margin: 2px;
    padding: 2px;
 		float: left;   

}
.auto-box p{
    margin: 12px;
    padding: 2px;

}
.seminarvideo{
	width: 100%;

}



}


/*画面を横向きにした場合の高さが500px以下の場合の設定。
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (orientation: landscape) and (max-height:500px){

/*メインメニュー。小さな端末用メニューを２列に。
---------------------------------------------------------------------------*/
/*メニュー１個あたりの設定*/
#menubar-s nav li a {
	float: left;		/*左に回り込み*/
	width: 50%;
}

.list{
  width: 45%;
}

}


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

/*mainブロック
---------------------------------------------------------------------------*/
/*h2タグ*/
#main h2 {
	font-size: 16px;
}
/*h2タグにclass="title"をつけたタイプ。大見出し。*/
#main h2.title {
	font-size: 20px;
}
/*h2タグにclass="title"をつけたタイプ内にあるspanタグ*/
#main h2.title span {
	font-size: 11px;
	margin-top: 10px;	/*上に空ける余白。上下のバランスをここでとります。*/
}
/*h3タグ*/
#main h3 {
	font-size: 14px;
}
/*段落(p)タグ*/
#main p {
	padding: 0 10px 20px;	/*上、左右、下への余白*/
}
/*他。微調整。*/
#main section + section {
	padding-top: 20px;
}

/*listブロック（works.htmlで使用）
---------------------------------------------------------------------------*/

.list a::after {
	right: 2px;
	top: 2px;
	line-height: 20px;
	width: 20px;
}
/*h4タグ*/
.list h4 {
	padding: 0;
}

/*テーブル（ta1）
---------------------------------------------------------------------------*/
/*テーブル１行目に入った見出し部分（※caption）*/
.ta1 caption {
	padding: 5px;
}
/*ta1設定*/
.ta1, .ta1 td, .ta1 th {
	padding: 5px;
}
/*ta1の左側ボックス*/
.ta1 th {
	width: 100px;
}

/*ul.disc,olタグ
---------------------------------------------------------------------------*/
ul.disc {
	list-style: disc;
	padding: 0 10px 20px 30px;
}
ol {
	padding: 0 10px 20px 30px;
}

/*その他
---------------------------------------------------------------------------*/
.ws,.wl {width: 94%;}

.list{
  width: 90%;
}


/*--------------------------------
/ 図枠
/----------------------------------*/
.fig-frame{
	border: 2px;
	max-width: 100%;
	display: flex;
  justify-content: space-between;	
  flex-direction: column;

}
.fig-frame img{
	border: 10px;
	max-width: 100%;
	vertical-align: bottom;
	max-height: 100%;
	width: auto;
	height: auto;
  margin: 10px;
  padding: 10px;
}

.fig-frame-half{
	border: 2px;


}
.fig-frame-half img{
	border: 10px;
	max-width: 40%;
	vertical-align: bottom;
	max-height: 100%;
	width: auto;
	height: auto;
  margin: 10px;
  padding: 10px;
}

.one-box{
	overflow: hidden;
	width:100%;
	height:auto;
}
.two-boxes{
	width:100%;
	height:auto;
	float: left;
}
.two-boxes img{
	border: 10px;
	max-width: 100%;
	vertical-align: bottom;
	max-height: 100%;
	width: auto;
	height: auto;
}
/*
.two-boxes img::after{
	float: none;
	overflow:  hidden;
}
*/

.fig-frame p{
    color: black;
}

.auto-box{
    height:auto;
    width:100%;
    margin: 2px;
    padding: 2px;
 		float: left;   

}
.auto-box p{
    margin: 12px;
    padding: 2px;

}
.seminar-video{
	width: 100%;

}




}




#aboutheader{
	height: 60px;
	background: url(../images/about-header.png) no-repeat center center / cover ;
}

/*----------------------------------------------------
-----------------------------------------------------*/
table.type01  {
	width: auto;
  margin:10px;
  border: 1px solid #aaa;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 6px;
  background-color: white;

}
table.type01  thead th,
table.type01  tbody th,
table.type01  tbody td {
  padding: .1em 1em;
  border-bottom: 1px solid #aaa;
	vertical-align: top;
}
table.type01  thead th {
  background-color: #ddd;
}
table.type01  tbody th {
  background-color: #eee;
}
table.type01  thead th + th,
table.type01  tbody td {
  border-left: 1px solid #aaa;
}
table.type01  tbody tr:last-child th,
table.type01  tbody tr:last-child td {
  border-bottom: none;
}
table.type01  thead tr:first-child th:first-child {
  border-radius: 5px 0 0 0;
}
table.type01  thead tr:first-child th:last-child {
  border-radius: 0 5px 0 0;
}
table.type01   tbody tr:last-child th:first-child {
  border-radius: 0 0 0 5px;
}
table.type01  tbody tr:last-child th:last-child {
  border-radius: 0 0 5px 0;
}
table.type01  ul {
	border:none;
	font-size: 90%;

}
table.type01 ul li, ol li {
  line-height: 1.2; /*文の行高*/
  padding: 0.3em 0; /*前後の文との余白*/
}
.w-r-text{
	height: 30px;
	padding: 4px 9px;
	font-size: 14px;
	color: #ffffff;
	background: #ff0000;
	/*font-weight: bold;*/
	border-radius: 6px;
	margin:2px 2px 2px 2px;
}
.y-marker {
	color:black;
	background: yellow 20%;
}
.g-marker {
	color:black;
	background: lightgreen 20%;
}
.c-marker {
	background: cyan 90%;
}
.p-marker {
	background: pink 90%;
}
.notes{
	font-size: 0.85em;
	color: #666;
	text-indent: -1em;
	padding-left: 1em;
}
.notes ul, ol {
	color: #1e366a;
  /*border: dotted #1e366a 1px;/*ドット 色 太さ*/
  padding: 0.5em 0.5em 0.5em 2em;
}
.notes ul li, ol li {
	/*line-height: 1.5;*/
  padding: 0.2em 0;
}

.chara-em{
	font-weight:bold;
	color:#ff0000;
}
.kakomi{
    padding: 0.5em 1em;
    margin: 1em 0;
    color: #507ea4;
    background: #FFF;
    border: solid 2px #507ea4;/*線*/
    border-radius: 6px;/*角の丸み*/
    font-size:120%;
    display: inline-block;
}
.kakomi-dot{
	    padding: 0.1em 0.1em;
	    margin: 1.3em 0;
	    color: #565656;
	    background: #ffeaea;
	    box-shadow: 0px 0px 0px 10px #ffeaea;
	    border: dashed 2px #ffc3c3;
	    border-radius: 8px;
}
.kakomi-dot ol{
	    background:transparent;
}
.kakomi-s{
    padding: 0.3em 0.3em;
    margin: 0.3em 1.5em;
    color: #000000;
    background: #FFF;
    border: solid 1px #000000;/*線*/
    border-radius: 3px;/*角の丸み*/
    font-size:90%;
    display: inline-block;
}
.kakomi p {
    margin: 0;
    padding: 0;
}
h1 {
  font-size: 120%;
  color: #6594e0;
  /*線の種類（点線）2px 線色*/
  border-bottom: dashed 2px lightgray;
  margin-bottom: 20px;
}
h1.pagetitle {
	display: block;
	font-size: 15px;
	float: right;		/*右に回り込み*/
  letter-spacing: 0.2em;	/*文字間隔を少し広くとる設定*/
}
/*
h3 {
  font-size: 120%;
  color: white;
  padding: 0.2em;
  display: inline-block;
  color: : linear-gradient(to right, white 0%, black 33%);

  background: -webkit-linear-gradient(to right, #448db3 0%, rgb(255, 255, 255, 0) 80%);
  background: linear-gradient(to right, #448db3 0%, rgb(255, 255, 255, 0) 80%);
  vertical-align: middle;

  width:100%;
}
*/

/*
h3:before {
  content: '●';
  color: white;
  margin-right: 8px;
}
*/
h3 {
  position: relative;
  padding: 0.15em 0;
  color: #448db3;
  font-size: 120%;
  font-weight: bold;
}
h3:after {
  content: "";
  display: block;
  height: 4px;
  background: -webkit-linear-gradient(to right, #448db3 0%, rgb(255, 255, 255, 0) 33%);
  background: linear-gradient(to right, #448db3 0%, rgb(255, 255, 255, 0) 33%);
}


h4 {
  position: relative;
  padding: 0.15em 0;
  color: #448db3;
  font-size: 120%;
}
h4:after {
  content: "";
  display: block;
  height: 2px;
  background: -webkit-linear-gradient(to right, #448db3 0%, rgb(255, 255, 255, 0) 33%);
  background: linear-gradient(to right, #448db3 0%, rgb(255, 255, 255, 0) 33%);
}
.breadcrumb {
  margin: 0;
  padding: 4px;
  list-style: none;

}

.breadcrumb li {
  display: inline-block;/*横に並ぶように*/
  list-style: none;

}
.breadcrumb li + li::before {
  margin: 0 8px;
  content: ">";
}
/*--------------------------------
/ 図枠
/----------------------------------*/
.fig-frame img{
	border: 10px;
	max-width: 100%;
	vertical-align: bottom;
	max-height: 100%;
	width: auto;
	height: auto;
  margin: 10px;
  padding: 10px;
}

.fig-frame-half{
	border: 2px;


}
.fig-frame-half img{
	border: 10px;
	max-width: 100%;
	vertical-align: bottom;
	max-height: 100%;
	width: auto;
	height: auto;
  margin: 10px;
  padding: 10px;
}

.one-box{
	overflow: hidden;
	width:100%;
	height:auto;
}
.two-boxes{
	width:100%;
	height:auto;
	float: left;
}
.two-boxes img{
	border: 10px;
	max-width: 100%;
	vertical-align: bottom;
	max-height: 100%;
	width: auto;
	height: auto;
	float: left;
}
/*
.two-boxes img::after{
	float: none;
	overflow:  hidden;
}
*/

.fig-frame p{
    color: black;
}

.auto-box{
    height:auto;
    width:100%;
    margin: 2px;
    padding: 2px;
 		float: left;   

}
.auto-box p{
    margin: 12px;
    padding: 2px;

}
.seminar-video{
	width: 40%;

}


ul.type01, ol.type01 {
  /*background: #fcfcfc;/*背景色*/
  padding: 0.5em 0.5em 0.5em 2em;/*ボックス内の余白*/
  /*border: solid 1px gray;/*線の種類 太さ 色*/
}

ul.type01 li, ol.type01 li {
  line-height: 1.5; /*文の行高*/
  padding: 0.5em 0; /*前後の文との余白*/
}


a.type01{

}
a.type01:after {
    font-family: 'FontAwesome';
    content: '\f0c1';
    font-size:0.9em;
    margin:0 3px 0 2px;
}
a.type01 [target="_blank"]:after {
    font-family: 'FontAwesome';
    content: '\f08e';
    font-size:0.9em;
    margin:0 3px 0 2px;
}
.pastinfo {
  border: dotted 2px #a69abd;
  background-color: #dcd6d9;

}
.pastinfo.is-hidden {
  display: none;
}
