@charset "utf-8";

:root{
/*変数・色指定*/

/*外枠の色*/
 --border-color:#3f8fc2;

/*囲み背景の色*/
 --bg-color:#58c9ee;

/*グラデーション終わりの色*/
 --grad-color:#91dbf4;

/*囲み背景・サブの色*/
 --bgsub-color:#c8edf9;

/*囲みテキストの色*/
 --bgtext-color:#4e889c;

/*タイトル・電話の背景色*/
 --title-bgcolor:#ffeac9;

/*タイトル・電話の背景色*/
 --title-bodercolor:#fe9e4a;

/*テーブル・内側の背景色*/
 --table-bgcolor:#fff5e6;

 }


/*全体の設定
---------------------------------------------------------------------------*/
body {
	color: #666;
	margin: 0px;
	padding: 0px;
	font: 16px/2 "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Osaka, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro";
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-position: center top;
	background-color: #FDFDF8;
}
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;
	vertical-align: bottom;
}
input,textarea,select {
	font-size: 1em;
}
form {
	margin: 0px;
}
table {
	border-collapse:collapse;
	font-size: 100%;
	border-spacing: 0;
}

/*リンク
---------------------------------------------------------------------------*/
a {
	color: var(--bgtext-color);
}
a:hover {
	color: var(--border-color);
	text-decoration: none;
}


h2 {
	border-radius: 10px;
	background-color: var(--title-bgcolor);
	background-image: -webkit-gradient(linear, left top, left bottom, from(#FFF), to(var(--title-bgcolor)));
	background-image: -webkit-linear-gradient(#FFF, var(--title-bgcolor));
	background-image: linear-gradient(#FFF, var(--title-bgcolor));
	-webkit-box-shadow: 1px 2px 7px #ccc;
	box-shadow: 1px 2px 7px #ccc;
	font-size: 130%;
	padding: 4px 15px;
	clear: both;
	border: 1px solid var(--title-bodercolor);
	text-align: center;
	color: var(--bgtext-color);
}

}
p {
	padding: 20px 15px;
}

.flex_test-box {
    display: flex;
    padding:  2px;             /* 余白指定 */
}

.flex_test-item {
    padding: 10px;
    color:  #fff;               /* 文字色 */
    margin:  6px;              /* 外側の余白 */
    border-radius:  6px;        /* 角丸指定 */
    font-weight: bold;
}

.flex_test-item:nth-child(1) {
    background-color:  #58c9ee; /* 背景色指定 */
    flex-basis: 20%;
    text-align: center;
    }
.flex_test-item:nth-child(2) {
    background-color:  #fff; /* 背景色指定 */
    border:  2px solid;
    border-color:  #2121ff; /* 背景色指定 */
    color:  #2121ff;               /* 文字色 */
    flex-basis: 20%;
    text-align: center;
}
.flex_test-item:nth-child(3) {
    background-color:  #fff; /* 背景色指定 */
    border:  2px solid;
    border-color:  #2121ff; /* 背景色指定 */
    color:  #2121ff;               /* 文字色 */
    flex-basis: 20%;
    text-align: center;
}
.flex_test-item:nth-child(4) {
    background-color:  #fff; /* 背景色指定 */
    border:  2px solid;
    border-color:  #2121ff; /* 背景色指定 */
    color:  #2121ff;               /* 文字色 */
    flex-basis: 20%;
    text-align: center;
}

.flex_test-box2 {
    display: flex;
    padding:  2px;             /* 余白指定 */
}

.flex_test-item2 {
    padding: 10px;
    color:  #fff;               /* 文字色 */
    margin:  6px;              /* 外側の余白 */
    border-radius:  6px;        /* 角丸指定 */
    font-weight: bold;
}


.flex_test-item2:nth-child(1) {
    background-color:  #58c9ee; /* 背景色指定 */
    font-weight: bold;
    flex-basis: 20%;
    text-align: center;
}
.flex_test-item2:nth-child(2) {
    background-color:  #fff; /* 背景色指定 */
    border:  2px solid;
    border-color:  #2121ff; /* 背景色指定 */
    color:  #2121ff;               /* 文字色 */
    flex-basis: 20%;
    text-align: center;
}
.flex_test-item2:nth-child(3) {
    color:  #000;               /* 文字色 */
    padding: 0px 10px 0px ;
    margin:  0px;              /* 外側の余白 */
    
}
.flex_test-item2:nth-child(4) {
    color:  #000;               /* 文字色 */
}


/*コンテナ
---------------------------------------------------------------------------*/
#container {
	width: 980px;
	margin-right: auto;
	margin-left: auto;
}

/*ヘッダー（サイト名ロゴが入ったブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
	width: 100%;
	height: 120px;
	position: relative;
}
/*h1ロゴの設定*/
header h1 {
	position: absolute;
	left: 28px;
	top: 28px;
}
/*電話番号ボックスの設定*/
header address {
	position: absolute;
	top: 24px;
	right: 40px;
	font-size: 14px;
	text-align: center;
	line-height: 1.6;
	border: 3px solid var(--title-bodercolor);
	background-color: var(--title-bgcolor);
	background-image: -webkit-gradient(linear, left top, left bottom, from(#FFF), to(var(--title-bgcolor)));
	background-image: -webkit-linear-gradient(#FFF, var(--title-bgcolor));
	background-image: linear-gradient(#FFF, var(--title-bgcolor));
	padding: 10px;
	border-radius: 10px;
	letter-spacing: 0.2em;
}
/*電話番号の文字設定*/
header address .tel {
	font-size: 21px;
	color: var(--bgtext-color);
	display: block;
}

/*上部のメインメニュー
---------------------------------------------------------------------------*/
/*メニューブロック全体の設定*/
nav#menu ul {
/* SVG as background image (IE9/Chrome/Safari/Opera) */
background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9IjAgMCAxIDEiIHByZXNlcnZlQXNwZWN0UmF0aW89Im5vbmUiPg0KPGxpbmVhckdyYWRpZW50IGlkPSJnNzM3IiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPg0KPHN0b3Agc3RvcC1jb2xvcj0iIzU4YzllZSIgb2Zmc2V0PSIwIi8+PHN0b3Agc3RvcC1jb2xvcj0iIzkxZGJmNCIgb2Zmc2V0PSIxIi8+DQo8L2xpbmVhckdyYWRpZW50Pg0KPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNnNzM3KSIgLz4NCjwvc3ZnPg==);
	background-image: -webkit-gradient(linear, left top, left bottom, from(var(--bg-color)), to(var(--grad-color)));
	background-image: -webkit-linear-gradient(var(--bg-color), var(--grad-color));/
	background-image: linear-gradient(var(--bg-color), var(--grad-color));
	border-radius: 10px;
	-webkit-box-shadow: 1px 2px 7px #ccc;
	box-shadow: 1px 2px 7px #ccc;
	padding-left: 36px;
	margin-bottom: 25px;
	height: 56px;
}
/*メニュー１個ごとの設定*/
nav#menu ul li {
	float: left;
	width: 180px;
	height: 56px;
	border-right: 1px solid var(--bgtext-color);
	text-align: center;
}
nav#menu ul li a {
	color: #FFF;		/*文字色*/
	text-decoration: none;
	display: block;
	height: 74%;
	-webkit-transition: 0.5s;
	transition: 0.5s;
	padding-top: 15px;
}
/*最初のメニューの設定*/
nav#menu ul li:first-child {
	border-left: 1px solid var(--bgtext-color);
}
/*マウスオン時の設定*/
nav#menu ul li a:hover {
	background-color: var(--bgtext-color);
}



/*トップページのスライドショー
---------------------------------------------------------------------------*/
#mainimg {
	clear: left;
	width: 980px;
	height: 300px;
	position: relative;
	border-radius: 10px;
	-webkit-box-shadow: 1px 2px 7px #ccc;
	box-shadow: 1px 2px 7px #ccc;
	margin-bottom: 25px;
}
#mainimg img {
	border-radius: 10px;
	vertical-align: bottom;
}
#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;
}

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

/*メインコンテンツ
---------------------------------------------------------------------------*/
#main {
	float: right;
	width: 700px;
	padding-bottom: 30px;
}

#index {
	float: right;
	width: 100%;
	padding-bottom: 30px;
}

#access {
	float: right;
	width: 100%;
	padding-bottom: 30px;
	text-align: center;
}

#main section,#index section {
		margin-bottom: 50px;
}

#box {
	width:95%;
	margin: 30px auto;
	padding: 10px;
	border: 2px solid var(--bg-color);
}

#box2 {
	width:80%;
	margin: 10px auto;
	padding: 10px;
	border: 2px solid var(--bg-color);
    border-radius:  12px;        /* 角丸指定 */

}
/*サブコンテンツ
---------------------------------------------------------------------------*/
#sub {
	float: left;
	width: 230px;
	padding-bottom: 30px;
}
/*subコンテンツ内のh2タグ設定*/
#sub h2 {
	border: 1px solid #CCC;
	border-radius: 10px 10px 0 0;
	color: var(--bgtext-color);
	font-size: 100%;
	text-align: center;
	padding: 5px 0px;
	background-color: var(--title-bgcolor);
	background-image: -webkit-gradient(linear, left top, left bottom, from(var(--title-bgcolor)), to(var(#fff)));
	background-image: -webkit-linear-gradient(var(-bg-color), var(#fff));
	background-image: linear-gradient(var(--title-bgcolor), var(#fff));
}

/*サブコンテンツ内のメニュー
---------------------------------------------------------------------------*/
/*メニューブロック全体の設定*/
#sub ul.submenu {
	margin-bottom: 15px;
	border-top: 1px solid #CCC;
	border-right: 1px solid #CCC;
	border-left: 1px solid #CCC;
}
/*メニュー１個ごとの設定*/
#sub ul.submenu li a {
	text-decoration: none;
	display: block;
	color: #666;
	border-bottom: 1px solid #CCC;
	padding-left: 10px;
	-webkit-transition: 0.5s;
	transition: 0.5s;
}

/*マウスオン時の設定*/
#sub ul.submenu li a:hover {
	background-color: var(--bgsub-color);
}
/*見出しにメニューが繋がった場合に枠線が重複しない為の設定*/
#sub h2 + ul.submenu {
	border-top: none;
}

/*フッター設定
---------------------------------------------------------------------------*/
footer {
	clear: both;
	text-align: center;
	padding-top: 15px;
	padding-bottom: 15px;
	color: #FFF;
	background: var(--bg-color);
}
footer .pr {
	display: block;
	font-size: 125%;
}
footer a {
	text-decoration: none;
	color: #FFF;

}
footer a:hover {
	color: #FFF;

}

/*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
/*ブロック全体の設定*/
#new{
	margin-bottom: 15px;
}
#new dl{
	overflow: auto;
	height: 150px;
	padding-left: 15px;
}
/*日付設定*/
#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;
}

/*スタッフサムネイルボックス
---------------------------------------------------------------------------*/
/*ボックス１個あたりの設定*/
#main .list section {
	float: left;
	border: 1px solid #CCC;
	margin-bottom: 15px;
	margin-left: 10px;
	background-color: #FFF;
	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 2px #FFF inset;
	box-shadow: 0px 2px 5px #CCC, 0px 0px 2px #FFF inset;
	font-size: 11px;
	text-align: center;
	line-height: 1.5;
	overflow: hidden;
	position: relative;
}
#main .list section a {
	text-decoration: none;
	-webkit-transition: 0.5s;
	transition: 0.5s;
	padding: 10px;
	display: block;
	width: 140px;
	height: 210px;
}
/*スタッフ名*/
#main .list section h4 {
	color: var(--bg-color);
	font-size: 100%;
}
/*サムネイル内のアイコン位置*/
#main .list section .icon {
	position: absolute;
	right: 2px;
	bottom: 2px;
}
/*マウスオン時のボックス*/
#main .list section a:hover {
	background: var(--bgsub-color);
}

/*写真とテーブルを囲むボックス*/
#main .staff {
	margin-right: 10px;
	margin-left: 10px;
}
/*左側ボックス*/
#main .staff .left {
	float: left;
	width: 250px;
	padding-bottom: 15px;
}
#main .staff .left p {
	padding: 0px;
}
/*右側ボックス*/
#main .staff .right {
	width: 400px;
	float: right;
	padding-bottom: 15px;
}
/*テーブル内の左側*/
#main .staff .right .ta1 th {
	width: 100px;
}
/*テーブル１
---------------------------------------------------------------------------*/
.ta1 {
	width: 100%;
}
.ta1, .ta1 td, .ta1 th{
	border: 1px solid #CCC;
	line-height: 2;
}
/*テーブル内の右側*/
.ta1 td{
	text-align: center;
	width:100px;
	padding: 6px 3px;
	background-color: var(--table-bgcolor);
}
/*テーブル内の左側*/
.ta1 th{
	width: 180px;
	padding: 6px;
	text-align: center;
	background-color: var(--title-bgcolor);
}
/*テーブル１行目に入った見出し部分*/
.ta1 th.tamidashi{
	width: auto;
	text-align: left;
	background-color: #e2e2e2;
}
/*テーブルのキャプション設定*/
.ta1 caption{
	padding: 6px;
	border-top: 1px solid #CCC;
	border-right: 1px solid #CCC;
	border-left: 1px solid #CCC;
	text-align: center;
	font-size: 1.2em;
	background-color: var(--bg-color);
	background-image: -webkit-gradient(linear, left top, left bottom, from(#fff), to(var(--title-bgcolor)));
	background-image: -webkit-linear-gradient(#fff, var(--title-bgcolor));
	background-image: linear-gradient(#fff, var(--title-bgcolor));
	font-weight: bold;
}
/*schedule-table*/
.ta1.schedule-table th{
	width: auto;
}
.ta1.schedule-table td{
	width: 12%;
	text-align: center;
}

/*テーブル2
---------------------------------------------------------------------------*/
.ta2 {
	width: 100%;
}
.ta2, .ta2 td, .ta2 th{
	border: 1px solid #CCC;
	line-height: 2;
}
/*テーブル内の右側*/
.ta2 td{
	text-align: center;

	padding: 6px;
	background-color: var(--table-bgcolor);
}
/*テーブル内の左側*/
.ta2 th{
	width: 180px;
	padding: 6px;
	text-align: center;
	background-color: var(--title-bgcolor);
}
/*テーブル１行目に入った見出し部分*/
.ta2 th.tamidashi{
	width: auto;
	text-align: left;
	background-color: #e2e2e2;
}
/*テーブルのキャプション設定*/
.ta2 caption{
	padding: 6px;
	border-top: 1px solid #CCC;
	border-right: 1px solid #CCC;
	border-left: 1px solid #CCC;
	text-align: center;
	font-size: 1.2em;
	background-color: var(--title-bgcolor);
	background-image: -webkit-gradient(linear, left top, left bottom, from(#fff), to(var(--title-bgcolor)));
	background-image: -webkit-linear-gradient(#fff, var(--title-bgcolor));
	background-image: linear-gradient(#fff, var(--title-bgcolor));
	font-weight: bold;
}
/*schedule-table*/
.ta2.schedule-table th{
	width: auto;
}
.ta2.schedule-table td{
	width: 12%;
	text-align: center;
}

/*submitボタンの設定*/
input[type="submit"],
input[type="button"] {
	width: 250px;
	padding: 10px;
	margin-bottom: 20px;
	border: none;
	border-radius: 30px;
	background-color: var(--bg-color);
	background-image: -webkit-gradient(linear, left top, left bottom, from(#ffac4e), to(var(--bg-color)));
	background-image: -webkit-linear-gradient(#ffac4e, var(--bg-color));
	background-image: linear-gradient(#ffac4e, var(--bg-color));
	-webkit-box-shadow: 1px 2px 7px #ccc;
	box-shadow: 1px 2px 7px #ccc;
	color: #FFF;
}
/*submitボタンのマウスオン時の設定*/
input[type="submit"]:hover,
input[type="button"]:hover {
	background-color: #ffac4e;
	background-image: -webkit-gradient(linear, left top, left bottom, from(var(--bg-color)), to(#ffac4e));	/*グラデーション*/
	background-image: -webkit-linear-gradient(var(--bg-color), #ffac4e);
	background-image: linear-gradient(var(--bg-color), #ffac4e);
}

/*PAGE TOP設定
---------------------------------------------------------------------------*/
#pagetop {
	clear: both;
}
#pagetop a {
	color: #FFF;
	font-size: 10px;
	background-color: var(--bg-color);
	text-decoration: none;
	text-align: center;
	width: 12em;
	display: block;
	float: right;
	letter-spacing: 0.1em;
}
/*マウスオン時*/
#pagetop a:hover {
	background-color: #333;
	color: #FFF;
}

/*その他
---------------------------------------------------------------------------*/
.look {
	background: #dcdcdc;
}
.mb15 {
	margin-bottom: 15px;
}
.clear {
	clear: both;
}
ul.disc {
	padding: 0em 25px 1em;
	list-style: disc;
}
.color1 {
	color: #f61468;
}
.pr {
	font-size: 10px;
}
.btn {
	font-size: 13px;
}
.wl {
	width: 96%;
}
.ws {
	width: 50%;
}
.c {
	text-align: center;
}
.r {
	text-align: right;
}
.fr {
	float:right;
}
.fl {
	float: left;
}
#menubar_hdr {
	display: none;
}


p.indent1 {
text-indent:1em;
}
p.indent2 {
text-indent:2em;
}
p.indent-kai {
padding-left:2em;
text-indent:-1em;
}
p.indent-kai1 {
padding-left:1em;
text-indent:-1em;
}
p.indent-kai2 {
padding-left:2em;
text-indent:-2em;
}


/* お知らせ
-----------------------------------------------------------------------------*/
#information {
	margin: 20px;
	padding: 0px;
}

#information dt {
	font-weight: bold;
	color: var(--bg-color);

#information dl {
	margin: 10px;
	padding: 0px;
}

#information dd {
	margin: 0px;
	padding: 0px;

.page_main {
position: relative;
}
.page_main > aside {
background-color: rgba(76,84,130,0.8);
width: 350px;——②
height: 100%;——③
top: 0;
left: -350px;——①
position: fixed;
}
.page_main > aside ul {
margin: 0;
padding: 0;
top: 50px;
left: 114px;
position: absolute;
}
.page_main > aside li {
margin: 20px auto;
list-style: none;
}
.page_main > aside button {
background-color: rgba(76,84,130,0.8);
display: block;
position: absolute;
top: 150px;
left: 350px;
width: 52px;
height: 132px;
margin: 0;
padding: 0;
border-radius: 0 5px 5px 0;
}

