@charset "utf-8";

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

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


/*全端末（PC・タブレット・スマホ）共通設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/

/*全体の設定
---------------------------------------------------------------------------*/
body,html {width: 100%;height: 100%;}
body {
	min-height: 100vh;
    position: relative;/*←相対位置*/
	margin: 0px;
	padding: 0px;
	color: #000;	/*全体の文字色*/
	font-family:"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;	/*フォント種類*/
	font-size: 12px;	/*文字サイズ*/
	line-height: 2;		/*行間*/
	background: #F5F8EC;	/*背景色*/
	-webkit-text-size-adjust: none;
	/*text-shadow: 1px 1px 2px #000;	/*テキストの影。右へ、下へ、ぼかし幅、色。*/
	padding-bottom: 120px;/*←footerの高さ*/
	box-sizing: border-box;/*←全て含めてmin-height:100vhに*/
	overflow:hidden;
}
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;}
ul {list-style-type: none;}
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: #fff;		/*リンクテキストの色*/
	transition: 0.4s;	/*マウスオン時の移り変わるまでの時間設定。0.4秒。*/
}
a:hover {
	color: #fff;			/*マウスオン時の文字色*/
	text-decoration: none;	/*マウスオン時に下線を消す設定。残したいならこの１行削除。*/
}

/*container。サイト全体を囲むブロック
---------------------------------------------------------------------------*/
/*containerブロック共通*/
#container {
	position: fixed;
	width: 100%;
	height: 100%;
}
/*company.htmlの背景画像指定*/
.company #container {
	background: url(../images/1.jpg) no-repeat center center;	/*背景画像（※IE8以下の古いブラウザ用）*/
	background: url(../images/1.jpg) no-repeat center center / cover;	/*背景画像*/
}
/*works.htmlの背景画像指定*/
.works #container {
	background: url(../images/2.jpg) no-repeat center center;	/*背景画像（※IE8以下の古いブラウザ用）*/
	background: url(../images/2.jpg) no-repeat center center / cover;	/*背景画像*/
}
/*link.htmlの背景画像指定*/
.link #container {
	background: url(../images/3.jpg) no-repeat center center;	/*背景画像（※IE8以下の古いブラウザ用）*/
	background: url(../images/3.jpg) no-repeat center center / cover;	/*背景画像*/
}
/*contact.htmlにも背景画像を指定したい場合は、以下にスタイルを追加して下さい。*/
.contact #container {
	background: #737f02;
}


/*症例提出ページ全体
---------------------------------------------------------------------------*/
/* ヘッダ部の設定 */
.home #consult-head {
	position: absolute;
	top:0%;
	Left:0%;
	height:50px;
	width:100%;
}

/* メイン部の設定 */
.home #consult-main {
	position: absolute;
	top:0%;
	Left:0%;
	height:800px;
	width:100%;
	overflow-y: scroll; 	/* 縦スクロールバー */
}

/* フッター部の設定 */
.home #consult-footer {
	position: absolute;
	top:1000px;
	Left:0%;
	height:50px;
	width:100%;
}

.home #footer {
	height: 100px;
    width: 100%;
	position: absolute;
	top : 1800px;
    background-color: #8FC31F;
		/* 罫線 */
		border: thin solid #BABECC;
}

#footer ul.footer-menu li {
display: inline;
}


/*会員情報
---------------------------------------------------------------------------*/
#member{
	height: 100%;
	width: 100%;
}

.home #member{
	position: absolute;
	height: 180px;
	width: 1300px;
	top: 50px;      /* 上空の配置指定 */
	Left: 120px;	/* 左からの配置指定*/
	background: #ffffff;	/*背景色*/
	border: thin solid #BABECC
}

#member table {
	position: absolute;
	height: 170px;
	width:95%;
	top:40px;
	Left:20px;
	/* font設定 */
	color: #000;
	font-size: 10px;			/*文字サイズ*/
/*
    border: 2px #3b4b26 solid;  /* テーブルの罫線 */
}

#member td  {
	width: 200px;
	text-align: center;	/*内容をセンタリング*/
	word-break: break-all;
	border: 1px solid #3b4b26;	/*テーブルの枠線の幅、線種、色*/
	padding-left: 9px;	/*ボックス内の余白*/
	padding-right: 9px;	/*ボックス内の余白*/

	font-family: 'メイリオ';	/*冒頭のgoogle fontsの指定*/
  }

#member .consulNo{
	position: absolute;
	top:10px;
	Left: 20px;	/* 左からの配置指定*/
}

#consult .CaseNo {
	height: 50px;
    width: 200px;
	position: absolute;
	top:5px;
	Left:8px;
	/* font設定 */
	color: #000;
	font-size: 10px;			/*文字サイズ*/
/*
    border: 2px #3b4b26 solid;  /* テーブルの罫線 */
}

.home p{
	Left:20px;
	font-weight: bold;
	font-size:medium;
	color:#3b4b26;
	margin-left: 20px;
	margin-top: 5px;
}

.home th   {
	height:40px;
	width: 200px;
	word-break: break-all;
	border: 1px solid #3b4b26;	/*テーブルの枠線の幅、線種、色*/

	padding-left: 10px;	/*ボックス内の余白*/
	padding-right: 10px;	/*ボックス内の余白*/
	background-color:#8FC31F ;

	text-align: center;	/*内容をセンタリング*/
	color:honeydew;			/* 文字の色 */
	font-family: 'メイリオ';	/*冒頭のgoogle fontsの指定*/
	letter-spacing:0.1em;		/* 文字間隔 */
  }





/*症例提出ユーザ情報ブロック
---------------------------------------------------------------------------*/
/*トップページのconsultブロックのフレーム。検索ブロックの表示箇所です。*/
.home #consult {
	height: 180px;
	position: absolute;
	width: 740px;
	top: 250px;      /* 上空の配置指定 */
	Left: 120px;	/* 左からの配置指定*/
	background: white;	/*背景色*/
	border: thin solid #BABECC;
}

#consult .title {
	position: absolute;
	Left: 45%;
	/* font設定 */
	color: #000;
	font-family: 'Poiret One';	/*冒頭のgoogle fontsの指定*/
	font-size: 30px;			/*文字サイズ*/
}

#consult .consulNo {
	top:10px;
	position: absolute;
	Left: 10px;	/* 左からの配置指定*/
}

#consult .userinfo {
	top:80px;
	width:100px;
	position: absolute;
	Left: 10px;	/* 左からの配置指定*/
}

/* 患者情報ボックス内のテーブル表示位置 */
#consult table {
	height: 150px;
    width: 700px;
	position: absolute;
	top:10px;
	Left:10px;
	/* font設定 */
	color: #000;
	font-size: 10px;			/*文字サイズ*/
/*
    border: 2px #3b4b26 solid;  /* テーブルの罫線 */
}

#consult th   {
	height:auto;
	width: 200px;
	text-align: center;	/*内容をセンタリング*/
	word-break: break-all;
	/*
	border: 1px solid #3b4b26;	/*テーブルの枠線の幅、線種、色*/
	text-align: center;	/* 中央寄せ*/
	padding-left: 10px;	/*ボックス内の余白*/
	padding-right: 10px;	/*ボックス内の余白*/
  }

#consult td  {
	width: 200px;
	text-align: center;	/*内容をセンタリング*/
	word-break: break-all;
	border: 1px solid #3b4b26;	/*テーブルの枠線の幅、線種、色*/
	text-align: center;	/* 中央寄せ*/
	padding-left: 10px;	/*ボックス内の余白*/
	padding-right: 10px;	/*ボックス内の余白*/
  }

#consult .td-2rows  {
	width: 100px;
	text-align: center;	/*内容をセンタリング*/
	word-break: break-all;
	/*
	border: 1px solid #3b4b26;	/*テーブルの枠線の幅、線種、色*/
	text-align: center;	/* 中央寄せ*/
	padding-left: 10px;	/*ボックス内の余白*/
	padding-right: 10px;	/*ボックス内の余白*/
  }

/* 症例提出ステータスブロック
---------------------------------------------------------------------------*/
.home #submit-state{
	position: absolute;
	top: 250px;      /* 上空の配置指定 */
	Left: 880px;		/*左からの配置指定*/
	height: 180px;
	width: 540px;
	background: white;	/*背景色*/
	border: thin solid #BABECC;
}

/* 症例提出ステータスボックス内のテーブル表示位置 */
#submit-state .left-tbl {
	position: absolute;
	height: 150px;
    width: 300px;
	top:10px;
	Left:20px;
	/* font設定 */
	color: #000;
	font-size: 10px;			/*文字サイズ*/
}

/* 症例提出ステータスボックス内のテーブル表示位置 */
#submit-state .rigth-tbl {
	position: absolute;
	height: 150px;
    width: 200px;
	top:10px;
	Left:300px;
	/* font設定 */
	color: #000;
	font-size: 10px;			/*文字サイズ*/
/*
    border: 2px #3b4b26 solid;  /* テーブルの罫線 */
}


/* 症例提出ステータスボックス内の下テーブル(キャンセル／症例完了ボタン)表示位置 */
#submit-state .btm-tbl {
	position: absolute;
	height: 150px;
    width: 700px;
	top:110px;
	Left:20px;
	/* font設定 */
	color: #000;
	font-size: 10px;			/*文字サイズ*/
}

#submit-state th   {
	height:auto;
	text-align: center;	/*内容をセンタリング*/
	word-break: break-all;
	/*
	border: 1px solid #3b4b26;	/*テーブルの枠線の幅、線種、色*/
	padding-left: 10px;	/*ボックス内の余白*/
	padding-right: 10px;	/*ボックス内の余白*/
  }


#submit-state .left-tbl td  {
	width:200px;
	text-align: center;	/*内容をセンタリング*/
	word-break: break-all;
	border: 1px solid #3b4b26;	/*テーブルの枠線の幅、線種、色*/
	padding-left: 10px;	/*ボックス内の余白*/
	padding-right: 10px;	/*ボックス内の余白*/
  }

#submit-state .btm-tbl td {
	width:480px;
	text-align: center;	/*内容をセンタリング*/
	word-break: break-all;
	padding-left: 10px;	/*ボックス内の余白*/
	padding-right: 10px;	/*ボックス内の余白*/
  }

#submit-state .cancel  {
	text-align: center;	/*内容をセンタリング*/
	word-break: break-all;
/*
	border: 1px solid #3b4b26;	/*テーブルの枠線の幅、線種、色*/
	/* font設定 */
	color: rgb(248, 2, 2);
	font-weight: bold;		
	letter-spacing: 0.5em;
	padding-left: 10px;	/*ボックス内の余白*/
	padding-right: 10px;	/*ボックス内の余白*/
  }


/* ステータスボックス内の検索ボタン表示位置 */
#submit-state button{
	width:200px;
	background: #8FC31F;
    opacity:0.7; 
	border-color: #8FC31F;
	border-radius: 80px 80px 80px 80px;   /* 枠線の丸み */
	/* font設定 */
    color : #ffff;
}


/*症例内容ブロック
---------------------------------------------------------------------------*/
/*トップページのconsultブロックのフレーム。検索ブロックの表示箇所です。*/
.home #consult-info {
	position: absolute;
	height: 680px;
	width: 740px;
	top: 460px;      /* 上空の配置指定 */
	Left: 120px;	/* 左からの配置指定*/
	background: white;	/*背景色*/
	border: thin solid #BABECC;
}

/* 相談内容ボックス内のテーブル表示位置 */
#consult-info table {
	height: 800px;
    width: 95%;
	position: absolute;
	top:30px;
	Left:10px;
	/* font設定 */
	color: #000;
	font-family: 'Poiret One';	/*冒頭のgoogle fontsの指定*/
	font-size: 10px;			/*文字サイズ*/
/*
    border: 2px #3b4b26 solid;  /* テーブルの罫線 */
}

/* text用設定 */
#consult-info .td-text  {
	height:70px;
	text-align: left ;	/*内容をセンタリング*/
	vertical-align: top;
	letter-spacing:0.2em;	
	word-break: break-all;
	/*
	border: 1px solid #3b4b26;	/*テーブルの枠線の幅、線種、色*/
	padding-left: 10px;	/*ボックス内の余白*/
	padding-right: 10px;	/*ボックス内の余白*/
  }

#consult-info th   {
	height:auto;
	width: 200px;
	text-align: left;	/*内容を左寄せ*/
	word-break: break-all;
	border: 1px solid #3b4b26;	/*テーブルの枠線の幅、線種、色*/
	/* font設定 */
	color: #ffff;
    font-weight: bold; 		/* 太文字 */
	font-size: 11px;			/*文字サイズ*/

	padding-top:5px;        /* ボックス内の余白(上) */
	padding-bottom:5px;     /* ボックス内の余白(下) */
	padding-left: 10px;		/* ボックス内の余白(右) */
	padding-right: 10px;	/* ボックス内の余白(左) */
  }

#consult-info td {
	width:200px;
	text-align: center;	/*内容をセンタリング*/
	word-break: break-all;
	border: 1px solid #3b4b26;	/*テーブルの枠線の幅、線種、色*/
	padding-left: 10px;	/*ボックス内の余白*/
	padding-right: 10px;	/*ボックス内の余白*/
  }


#consult-info .bold {
	font-weight:bold;
	background-color: #ffff66;
	border-radius:50px;
/*
	background: linear-gradient(transparent 60%, #ffff66 60%);
*/
  }


#consult-info td  {
	width: 200px;
	text-align: center;	/*内容をセンタリング*/
	word-break: break-all;
/*
	border: 1px solid #3b4b26;	/*テーブルの枠線の幅、線種、色*/
	padding-left: 10px;	/*ボックス内の余白*/
	padding-right: 10px;	/*ボックス内の余白*/
  }

/* textarea用設定 */
#consult-info .td2  {
	height:80px;
	width: 200px;
	text-align: center;	/*内容をセンタリング*/
	word-break: break-all;
	/*
	border: 1px solid #3b4b26;	/*テーブルの枠線の幅、線種、色*/
	padding-left: 10px;	/*ボックス内の余白*/
	padding-right: 10px;	/*ボックス内の余白*/
  }

#consult-info textarea{
	height:80px;
	width: 100%;
	text-align: left;	/*内容を右よせ */
	box-shadow: inset 2px 2px 5px #BABECC, inset -5px -5px 10px #FFF;
	box-sizing: border-box;
	transition: all 0.2s ease-in-out;
	appearance: none;
	-webkit-appearance: none;
    overflow-wrap: break-word;
  }

#consult-info textarea:focus {
	box-shadow: inset 1px 1px 2px #BABECC, inset -1px -1px 2px #FFF;
  }

/* メッセージブロック
---------------------------------------------------------------------------*/
#message{
	height: 100%;
	width: 100%;
}

/*トップページのmessageブロックのフレーム。メッセージブロックの表示箇所です。*/
.home #message {
	height: 200px;
	position: absolute;
	width: 540px;
	top: 460px;      /* 上空の配置指定 */
	Left: 880px;		/*左からの配置指定*/
	background: rgb(255, 255, 255);	/*背景色*/
	border-radius: 5px 5px 5px 5px;   /* 枠線の丸み */
	box-shadow: -2px -2px 5px #FFF, 2px 2px 5px #BABECC;
}

#message table {
	height: auto;
	position: absolute;
    white-space: nowrap;
    border: 1px #3b4b26 solid;  /* テーブルの罫線 */
	width: 90%;
	top: 100px;                   /* 上空の配置指定 */
	Left: 15px;	/* 左からの配置指定*/
	border: 1px solid #EFF6EB;	/*テーブルの枠線の幅、線種、色*/
	box-shadow: -2px -2px 5px #FFF, 2px 2px 5px #BABECC;
}

#message thead, tbody {
	display: block;
  }

#message thead {
	width: 97%;
	background: #F5F8EC;	/*背景色*/
	box-shadow: -2px -2px 5px #FFF, 2px 2px 5px #BABECC;
}

#message tbody {
	overflow-x: hidden;
	overflow-y: scroll;
	height: 200px;
  }

#message th  {
	width: 100px;
	text-align: center;	/*内容をセンタリング*/
  }
  
#message td  {
	width: 100px;
	text-align: center;	/*内容をセンタリング*/
  }

.midoku-icon{
	position: absolute;
	top: 30px;      /* 上空の配置指定 */
	Left: 10px;		/*左からの配置指定*/
}

.kidoku-icon{
	position: absolute;
	top: 30px;      /* 上空の配置指定 */
	left: 100px;
}

.home #message-div{
	position: absolute;
	overflow-x: hidden;
	overflow-y: scroll;
	top: 129px;                   /* 上空の配置指定 */
	width: 550px;
	height: 200px;
  }

.home #message-thead {
	height: auto;
	position: absolute;
    white-space: nowrap;
	width: 90%;
	top: 100px;                   /* 上空の配置指定 */
	Left: 15px;	/* 左からの配置指定*/
	border: 1px solid #EFF6EB;	/*テーブルの枠線の幅、線種、色*/
 /*   border: 2px #3b4b26 solid;   テーブルの罫線 */
	box-shadow: -2px -2px 5px #FFF, 2px 2px 5px #BABECC;
}
#message-thed th {
	   width: 100px;
}

.home #message-tbody {
	height: 100px;
	position: absolute;
    white-space: nowrap;
	width: 100%;
	Left: 15px;	/* 左からの配置指定*/

/*    border: 2px #3b4b26 solid;   テーブルの罫線 */
	box-shadow: -2px -2px 5px #FFF, 2px 2px 5px #BABECC;
}

#message-tbody td {
	   width: 36px;
}

/* 症例写真一覧表示ロック
---------------------------------------------------------------------------*/
/* 症例写真一覧ブロックのフレーム。*/
.home #result {
	position: absolute;
	height: 250px;
	width: 1300px;
	top: 1170px;      /* 上空の配置指定 */
	Left: 120px;	/* 左からの配置指定*/
	background: rgb(255, 255, 255);	/*背景色*/
	border: thin solid #BABECC;
}

#result table {
	position: absolute;
	height: auto;
	width: 97%;
	top: 50px;                  /* 上空の配置指定 */
	Left: 15px;					/* 左からの配置指定*/
	table-layout: fixed;
	border-collapse: collapse;

/*
	word-break: break-all;
	word-wrap: break-all;
*/
	border: 1px solid #EFF6EB;	/*テーブルの枠線の幅、線種、色*/
	box-shadow: -2px -2px 5px #FFF, 2px 2px 5px #BABECC;
}

#result th {
	height:auto;
	width: 200px;
	text-align: center;	/*内容を左寄せ*/
	word-break: break-all;
	border: 1px solid #3b4b26;	/*テーブルの枠線の幅、線種、色*/
    background-color: #8FC31F;
	/* font設定 */
	color: #ffff;
	font-size: 10px;			/*文字サイズ*/
}

#result .consult_img_td{
	width:200px;
	height:100%; 
	font-size: 10px;			/*文字サイズ*/
    border: 1px #3b4b26 solid;  /* テーブルの罫線 */
	padding: 0px;

}

.cimg img {
	object-fit: cover;
	object-position: bottom;
	font-family: 'object-fit: cover; object-position: bottom;';

/*
	display: block;  
	transition-duration: 0.5s;
*/
}

.consult_img img:hover {
		transform: scale(1.9,1.9);
		transition-duration: 0.5s;
		}



/* ファイル追加表示ロック
---------------------------------------------------------------------------*/
/* 追加ファイル一覧ブロックのフレーム。*/
.home #AddFile {
	position: absolute;
	height: 300px;
	width: 1300px;
	top: 1440px;      /* 上空の配置指定 */
	Left: 120px;	/* 左からの配置指定*/
	background: rgb(255, 255, 255);	/*背景色*/
	border: thin solid #BABECC;
}

#AddFile table {
	position: absolute;
	height: auto;
	width: 97%;
	top: 50px;                  /* 上空の配置指定 */
	Left: 15px;					/* 左からの配置指定*/
	table-layout: fixed;
	border-collapse: collapse;

/*
	word-break: break-all;
	word-wrap: break-all;
*/
	border: 1px solid #EFF6EB;	/*テーブルの枠線の幅、線種、色*/
	box-shadow: -2px -2px 5px #FFF, 2px 2px 5px #BABECC;
}

#AddFile th {
	font-size: 10px;			/*文字サイズ*/
    border: 1px #3b4b26 solid;  /* テーブルの罫線 */
	background: #F5F8EC;	/*背景色*/
}

#AddFile td {
/*
	width:100px;
	font-size: 10px;			/*文字サイズ*/
    border: 1px #3b4b26 solid;  /* テーブルの罫線 */
	padding: 0px;
}

#AddFile .consult_img{
	/*
	width:200px;
	height:100%; 
*/
	vertical-align: bottom;
}

#AddFile .consult_img img {
	display: block;
	transition-duration: 0.5s;
	}

.consult_img img:hover {
		transform: scale(1.9,1.9);
		transition-duration: 0.5s;
		}


/*contentsブロック
---------------------------------------------------------------------------*/
#contents {
	height: 100%;
	width: 100%;
}
/*トップページのcontentsブロック。Whats's Newブロックの表示箇所です。*/
.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: 80px;		/*幅*/
	height: 510px;		/*高さ*/
	border-right: 1px solid #fff;	/*右側の線の幅、線種、色（古いブラウザ用）*/
	border-right: 1px solid rgba(255,255,255,0.3);	/*右側の線の幅、線種、色。255,255,255は白の事で0.3は色が30%出た状態の事。*/
	transition: 1s;	/*hove時に１秒かけて動く*/
	background: #8FC41F;	/*背景色*/
}
/*マウスオン時のheaderブロック*/
header.pc:hover {
	width: 15%;	/*幅*/
	overflow-x: auto;	/*ウィンドウの高さよりコンテンツが増えた場合に切れないように自動でスクロールバーを出す設定*/
	overflow-y: hidden;	/*ウィンドウの高さよりコンテンツが増えた場合に切れないように自動でスクロールバーを出す設定*/
	background-color: #000;	/*背景色（古いブラウザ用）*/
	background-color: rgba(0,0,0,0.7);	/*背景色。0,0,0は黒の事で0.7は色が70%出た状態の事。*/
}
/*ロゴ画像ブロック*/
header.pc .logo {
	text-align: center;	/*内容をセンタリング*/
	border-bottom: 1px solid #fff;	/*下線の幅、線種、色（古いブラウザ用）*/
	border-bottom: 1px solid rgba(255,255,255,0.3);	/*下線の幅、線種、色。255,255,255は白の事で0.3は色が30%出た状態の事。*/
	height: 100px;	/*高さ*/
	width: auto;	/*画像の幅 */
}
header.pc .logo img {
	width: 100px;	/*画像の幅。マウスオン時に同じ大きさを保つ為。*/
}
/*header内のp(段落)タグ*/
header.pc p {
	padding: 10px;	/*余白*/
}

/*メインメニュー
---------------------------------------------------------------------------*/
/*メニュー１個あたりの設定*/
#menubar li {
	font-size: 12px;	/*文字サイズ*/
	position: relative;
}
#menubar li a {
	display:  block;text-decoration: none;
	border-bottom: 1px solid #fff;	/*下線の幅、線種、色（古いブラウザ用）*/
	border-bottom: 1px solid rgba(255,255,255,0.3);	/*下線の幅、線種、色。255,255,255は白の事で0.3は色が30%出た状態の事。*/
	width: auto;	/*幅*/
	height: 50px;	/*高さ*/
	padding-left: 80px;	/*左に空ける余白*/
}
/*マウスオン時*/
header:hover #menubar li a:hover {
	background-color: #3B4B25;	/*背景色*/
	color: #fff;				/*文字色*/
}
/*現在表示中メニュー（current）*/
#menubar li.current a {
	background-color: rgba(255,255,255,0.2);	/*255,255,255は白の事で0.2は色が20%出た状態。*/
}
/*テキスト*/
#menubar li a span {
	display: none;	/*通常時は非表示*/
}
/*マウスオン時のテキスト*/
header:hover #menubar li a span {
	display: block;	/*表示させる*/
	padding-top: 15px;	/*上に空ける余白。上下のバランスをとります。*/
}
/*メニュー用アイコン設定（menu1〜memu4までの共通設定）*/
.menuimg a {
	width: 40px;	/*幅*/
	height: 40px;	/*高さ*/
	display: inline-block;
	background-image: url(../images/icon.png);	/*背景画像の読み込み*/
	background-repeat: no-repeat;
	background-size: 40px 300px;	/*実際のアイコン画像（icon.png）全体の大きさの幅、高さのそれぞれ「半分」。解像度を高くするため半分の数字にしています。*/
}

/*menu1(HOME)*/
.menu1 a {
	background-position: 20px 10px;		/*背景画像の左から20px、上から20pxの部分を読み込む指定*/
}
/*menu2(メッセージ)*/
.menu2 a {
	background-position: 20px -30px;	/*背景画像の左から20px、上から-40px（上のmenu1の15からアイコンの高さ分の60をずらした）の部分を読み込む指定*/
}
/*menu3(会員管理)*/
.menu3 a {
	background-position: 20px -70px;	/*背景画像の左から20px、上から-100px（上のmenu2の-40からアイコンの高さ分の60をずらした）の部分を読み込む指定*/
}
/*menu4(お知らせ登録)*/
.menu4 a {
	background-position: 20px -105px;	/*背景画像の左から20px、上から-160px（上のmenu3の-100からアイコンの高さ分の60をずらした）の部分を読み込む指定*/
}
/*menu5(印象管理)*/
.menu5 a {
	background-position: 20px -142px;	/*背景画像の左から20px、上から-220px（上のmenu1の-160からアイコンの高さ分の60をずらした）の部分を読み込む指定*/
}
/*menu6(症例管理)*/
.menu6 a {
	background-position: 20px -183px;	/*背景画像の左から20px、上から-220px（上のmenu1の-160からアイコンの高さ分の60をずらした）の部分を読み込む指定*/
}
/*menu7(請求管理)*/
.menu7 a {
	background-position: 20px -220px;	/*背景画像の左から20px、上から-220px（上のmenu1の-160からアイコンの高さ分の60をずらした）の部分を読み込む指定*/
}
/*menu8(販売管理)*/
.menu8 a {
	background-position: 20px -255px;	/*背景画像の左から20px、上から-220px（上のmenu1の-160からアイコンの高さ分の60をずらした）の部分を読み込む指定*/
}

/*スマホ用メニューを表示させない*/
#menubar-s {display: none;}
/*３本バーアイコンを表示させない*/
#menubar_hdr {display: none;}

/*facebookやtwitterなどのアイコンブロック
---------------------------------------------------------------------------*/
/*アイコンを囲むブロック全体の設定*/
header .icon {
	text-align: center;	/*内容をセンタリング*/
	border-bottom: 1px solid #fff;	/*下線の幅、線種、色（古いブラウザ用）*/
	border-bottom: 1px solid rgba(255,255,255,0.3);	/*下線の幅、線種、色。255,255,255は白の事で0.3は色が30%出た状態の事。*/
	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: 2% 5% 0 15%;		/*上、右、下、左へのブロック内の余白*/
	height: 98%;				/*高さ*/
	animation-duration: 0.5S;	/*アニメーションの実行時間。秒。*/
	animation-fill-mode: both;	/*アニメーションの待機中は最初のキーフレームを、完了後は最後のキーフレームを維持する*/
	animation-name: main;		/*上のアニメーション設定で使っているkeyframesの名前。contents。*/
	animation-delay: 0.8s;		/*アニメーションを遅れて開始させる指定。0.5sは0.5秒の事。*/
	position: relative;
}
/*h2タグ*/
#main h2 {
	clear: both;
	margin-bottom: 20px;	/*見出しの下に空けるスペース*/
	font-size: 24px;		/*文字サイズ*/
	letter-spacing: 0.2em;	/*文字間隔を少し広くとる設定*/
	color: #c1bc9e;			/*文字色*/
}
/*h2タグの１文字目への指定*/
#main h2::first-letter {
	border-left: 3px solid #c1bc9e;	/*左の線の幅、線種、色*/
	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 #c1bc9e;	/*下線の幅、線種、色*/
}
#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;		/*文字サイズ*/
}
/*段落(p)タグ*/
#main p {
	padding: 0 20px 20px;	/*上、左右、下への余白*/
}
/*他。微調整。*/
#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: 30%;		/*幅*/
	margin-left: 2.5%;	/*左に空けるスペース*/
	margin-bottom: 20px;	/*下に空けるスペース*/
	background: #000;	/*背景色*/
}
.list a {
	display: block;
	text-decoration: none;
}
/*マウスオン時*/
.list a:hover {
	color: #fff;	/*文字色*/
}
/*リンクを指定した際に右上に出る「→」*/
.list a::after {
	content: "→";	/*この文字を出力します。変更してもかまいませんが機種依存文字は使わないで下さい。*/
	position: absolute;
	right: 10px;	/*右からの配置場所指定*/
	top: 10px;		/*上からの配置場所指定*/
	font-size: 12px;	/*文字サイズ*/
	line-height: 30px;	/*行間。下のwidthと揃えて下さい。*/
	width: 30px;		/*幅。上のline-heightと揃えて下さい。*/
	border-radius: 50%;	/*角丸の指定。円形になります。*/
	background: #ccc;	/*背景色*/
	color: #000;		/*文字色*/
	text-align: center;
}
/*figure画像*/
.list a figure {
	opacity: 0.6;	/*リンクを指定した際は60%だけ色を出す。*/
}
/*マウスオン時のfigure画像*/
.list a:hover figure {
	opacity: 1;		/*リンクを指定した際のマウスオン時に色を100%出す。*/
}
/*h4タグ*/
.list h4 {
	position: absolute;
	bottom: 0px;	/*下からの配置場所指定。*/
	left: 0px;		/*左からの配置場所指定。*/
	width: 100%;
	background: #000;	/*背景色（古いブラウザ用）*/
	background: rgba(0,0,0,0.5);	/*背景色。0,0,0は黒の事で0.5は色が50%出た状態。*/
	text-align: center;	/*内容をセンタリング*/
	padding: 10px 0;	/*上下、左右への余白*/
}

/*footerブロック
---------------------------------------------------------------------------*/
footer {
	height:50px;
	width: 100%;
	clear: both;
	text-align: right;
	background: #000;	/*背景色（古いブラウザ用）*/
	padding: 30px 0;
}
.home footer {padding-bottom: 10px;}
footer a {text-decoration: none;}

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

/*テーブル
---------------------------------------------------------------------------*/
/*テーブル１行目に入った見出し部分（※caption）*/
.ta1 caption {
	border: 1px solid #000;	/*テーブルの枠線の幅、線種、色*/
	border-bottom: none;	/*下線だけ消す*/
	text-align: left;		/*文字を左寄せ*/
	font-weight: bold;		/*太字に*/
	padding: 5px;			/*ボックス内の余白*/
}
/*テーブルの見出し（※tamidashi）*/
.ta1 th.tamidashi {
	word-break: break-all;
	text-align: center;	/*左よせ*/
	background: #F5F8EC;		/*背景色*/
	padding: 1px;	/*ボックス内の余白*/
}
/*ta1設定*/
.ta1 {
	table-layout: fixed;
	width: 90%;
	margin: 0 auto 20px;
}
.ta1, .ta1 td, .ta1 th {
	word-break: break-all;
	border: 1px solid #3b4b26;	/*テーブルの枠線の幅、線種、色*/
	text-align: center;	/*左よせ*/
	padding: 1px;	/*ボックス内の余白*/
}
/*ta1の左側ボックス*/
.ta1 th {
	width: 140px;		/*幅*/
	text-align: center;	/*センタリング*/
}

/*フォーム関連
---------------------------------------------------------------------------*/
/*ボタン（btn）*/
input[type="submit"].btn,
input[type="button"].btn,
input[type="reset"].btn {
	padding: 5px 20px;		/*上下、左右へのボックス内の余白*/
	border-radius: 3px;		/*角丸のサイズ*/
	background: #eee;	/*背景色*/
	color: #333;	/*文字色*/
}
/*マウスオン時のボタン（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 #ccc;	/*枠線の幅、線種、色*/
	color: #000;	/*文字色*/
	width:200px;
	height:20px;
}
/*input,textareaのフォーカス時*/
input:focus,textarea:focus {
	border: 1px solid #fff;	/*枠線の幅、線種、色*/
}

/*ボタン
---------------------------------------------------------------------------*/


/*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: #737f02;	/*背景色*/
	color: #fff;		/*文字色*/
	border: 1px solid #fff;	/*枠線の幅、線種、色*/
	border-radius: 50%;	/*円形にする指定*/
}
/*マウスオン時の背景色*/
.nav-fix-pos-pagetop a:hover {
	background: #fff;	/*背景色*/
	color: #737f02;		/*文字色*/
}

/*トップページの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: #000;				/*背景色（古いブラウザ用）*/
	background: rgba(0,0,0,0.4);	/*背景色。0,0,0は黒の事で0.4は色が40%出た状態の事。*/
	padding: 5%;					/*ボックス内の余白*/
	margin-bottom: 30px;			/*ボックスの下に空けるスペース*/
	border: 1px solid #fff;			/*線の幅、線種、色（古いブラウザ用）*/
}

/*その他
---------------------------------------------------------------------------*/
.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: #f1e300 !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%;}



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

/*header（小さな端末用：上部ブロック）
---------------------------------------------------------------------------*/
/*ロゴ画像ブロック*/
header.sh .logo {
	width: 80px;	/*ロゴ画像の幅*/
}

/*メインメニュー
---------------------------------------------------------------------------*/
/*アニメーションのフレーム設定。全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;		/*高さ*/
}
/*最後の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: 10px;		/*上から10pxの場所に配置*/
	right: 10px;	/*右から10pxの場所に配置*/
}
/*アイコン共通設定*/
#menubar_hdr.close,
#menubar_hdr.open {
	width: 50px;	/*幅*/
	height: 50px;	/*高さ*/
	border-radius: 50%;	/*円形にする*/
	border: 1px solid #fff;	/*枠線の幅、線種、色*/
}
/*三本バーアイコン*/
#menubar_hdr.close {
	background: #000 url(../images/icon_menu.png) no-repeat center top/50px;	/*背景色、背景画像の読み込み、画像の上半分（３本マーク）を表示。幅は50px。*/
}
/*閉じるアイコン*/
#menubar_hdr.open {
	background: #000 url(../images/icon_menu.png) no-repeat center bottom/50px;	/*背景色、背景画像の読み込み、画像の下半分（×マーク）を表示。幅は50px。*/
	top: 5px;	/*配置場所の再指定*/
}

/*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ブロック
---------------------------------------------------------------------------*/
footer {padding-bottom: 100px;}
footer .pr {display: block;}

/*「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
/*見出しを含まないお知らせブロック*/
#new dl {
	overflow: auto;
}

/*その他
---------------------------------------------------------------------------*/
.sh {display:block;}
.pc {display:none;}

}


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

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

}


/*画面幅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と揃えて下さい。*/
	width: 20px;		/*幅。上のline-heightと揃えて下さい。*/
}
/*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%;}

}
