@charset "utf-8";


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


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

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

/*リンク（全般）設定
---------------------------------------------------------------------------*/
a {
	color: #C74A00;		/*リンクテキストの色*/
	transition: 0.5s;	/*マウスオン時の移り変わるまでの時間設定。0.5秒。*/
}
a:hover {
	color: #A6A6A6;			/*マウスオン時の文字色*/
	text-decoration: none;	/*マウスオン時に下線を消す設定。残したいならこの１行削除。*/
}

/*inner
---------------------------------------------------------------------------*/
.inner {
	max-width: 1200px;	/*サイトの最大幅*/
	margin: 0 auto;
	padding: 0 3%;		/*上下、左右へのinner内の余白*/
}

/*ヘッダー（ロゴが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
	background: #fff; /*url(../images/bg1.png) no-repeat right center;*/	/*背景色、背景画像の読み込み。右側、天地中央に配置。*/
	border-bottom: 1px solid #ccc;
}
/*ヘッダーブロック　※index.html(.home)への追加設定*/
.home header {
	position: relative;
	margin-bottom: 60px;
}
/*ヘッダーブロックのinner*/
header .inner {
	height: 140px;	/*ヘッダーの高さ*/
	position: relative;
}
/*ロゴ画像*/
header #logo img {
	width: 705px;		/*ロゴ画像の幅*/
	position: absolute;
	left: 3%;		/*「header .inner」ブロックに対して左から3%の場所に配置*/
	bottom: 35px;	/*「header .inner」ブロックに対して下から35pxの場所に配置*/
}
header #logo-s img {
	position: static;
	padding-bottom: 5px;
	left: 1%;
	}
/*スマホ用タイトルロゴを表示させない*/
/*header #logo-s img {display: inline;}*/
header #logo-s img {display: none;}

/*「ご予約・お問い合わせ」ボタン*/
header #toiawase a {
	text-decoration: none;
	display: block;
	background: #d38c29;	/*背景色（古いブラウザ用）*/
	background: linear-gradient(#f3e3d3, #d99e4a 49%, #d38c29 50%, #d99c3e);	/*背景グラデーション*/
	border: 2px solid #d38c29;	/*枠線の幅、線種、色*/
	position: absolute;
	top: -3px;		/*「header .innner」ブロックに対して上から-5pxの場所に配置*/
	right: 3%;		/*「header .innner」ブロックに対して右から3%の場所に配置*/
	text-align: center;	/*文字をセンタリング*/
	padding: 15px 50px;	/*上下、左右への余白*/
	border-radius: 0px 0px 6px 6px;	/*角丸のサイズ。左上、右上、右下、左下への順*/
	font-size: 16px;	/*文字サイズ*/
	text-shadow: 0px -1px 1px rgba(0,0,0,0.5);	/*文字の影。右へ、下へ(マイナスがついているので実質上に向かう)、広げる幅、0,0,0は黒の事で0.5は50%色がついた状態の事。*/
}


/*３本バーアイコン設定　※index.html(.home)への追加設定
---------------------------------------------------------------------------*/
.home #menubar_hdr {
	top: 13px;	/*上から13pxの場所に再配置*/
}

/*マウスオン時の「お問い合わせ」ボタン*/
header #toiawase a:hover {
	background: #ffb750;	/*背景色（古いブラウザ用）*/
	background: linear-gradient(#fee2c7, #ffb750 49%, #ffa627 50%, #fbb447);	/*背景グラデーション*/
	color: #FFF;	/*文字色*/
}


/* メニュー前のテロップ*/
#menutext {
	clear: both;
	overflow: hidden;
	background: #000;		/*背景色（古いブラウザ用）*/
	color: #CCCCCC;
}

.telop {
  /*margin: auto 10px; 
  overflow: hidden;*/
	margin : 10 auto;
width : 100%;
font-size : 24px;
text-align : center;
}

.telop span {
  display: inline-block;
  padding-left: 100%;
  white-space: nowrap;
  animation: marquee 50s linear infinite;
}

@keyframes marquee {
  from {
    transform: translate(0);
  }
  to {
    transform: translate(-100%);
  }
}
/*メインメニュー
---------------------------------------------------------------------------*/
/*メニューブロック*/
#menubar {
	clear: both;
	overflow: hidden;
	margin-bottom: 30px;	/*上部のメニューと下のコンテンツとの間に空けるスペース*/
	background: #fff;		/*背景色（古いブラウザ用）*/
	background: linear-gradient(#fff, #e3e3e3);	/*背景グラデーション*/
}
/*メニューブロック　※index.html(.home)への追加設定*/
.home #menubar {
	float: right;				/*ブロックを右へ回り込み*/
	margin-top: 18px;			/*上下間のバランスをここで調整して下さい*/
	background: transparent;	/*背景色を透明にする設定*/
}
/*メニュー１個あたりの設定*/
#menubar li {
    float: left;	/*左に回り込み*/
    width: 12.5%;		/*メニュー幅（100÷5個=20%）*/
    /*width: auto;*/　　/*メニュー幅　各文字数に合わせる*/
    margin-left: 0px;
}
#menubar li a {
	display:  block;text-decoration: none;
	line-height: 1.6;	/*行間*/
	color: #333;		/*文字色*/
	text-align: center;	/*文字をセンタリング*/
	padding: 15px 7px;	/*上下、左右へのメニュー内の余白*/
	border-right: 1px solid #ccc;	/*右側の線の幅、線種、色*/
}
/*メニュー１個あたりの設定　※index.html(.home)への追加設定*/
.home #menubar li {
	width: auto;	/*幅のリセット*/
}
.home #menubar li a {
	background: #000;	/*背景色（古いブラウザ用）*/
	background: linear-gradient(#222, #000);	/*背景グラデーション*/
	color: #fff;		/*文字色*/
	margin-left: 10px;	/*右に空ける余白。メニュー同士の余白です。*/
	padding: 10px 20px;	/*上下、左右へのメニュー内の余白*/
	border-radius: 4px;	/*角丸のサイズ*/
	border: 1px solid #000;	/*枠線の幅、線種、色*/
}
/*１つ目のメニューへの追加設定*/
#menubar li:first-child a {
	border-left: 1px solid #ccc;	/*左側の線の幅、線種、色*/
}
/*１つ目のメニューへの追加設定　※index.html(.home)への追加設定*/
.home #menubar li:first-child a {
	border-left: 1px solid #000;	/*左側の線の幅、線種、色*/
}
/*装飾文字（英語表記）の設定*/
#menubar li a span {
	text-shadow: none;display: block;
	font-size: 12px;		/*文字サイズ*/
	letter-spacing: 0.2em;	/*文字間隔を少し広くする設定*/
	opacity: 0.6;			/*60%だけ色がついた状態。*/
}
/*マウスオン時*/
#menubar li a:hover {
	background: #fff;	/*背景色*/
}
/*マウスオン時　※index.html(.home)への追加設定*/
.home #menubar li a:hover {
	color: #333;		/*文字色*/
	background: #fff;	/*背景色（古いブラウザ用）*/
	background: linear-gradient(#fff, #e3e3e3);	/*背景グラデーション*/
}
/*現在表示中(current)メニューの設定*/
#menubar li.current a {
	background: #202020;	/*背景色*/
	color: #fff;			/*文字色*/
}


/*PC画面でもスマホ用メニュー(menubar-s)、３本バーアイコン(menubar_hdr)を表示する
---------------------------------------------------------------------------*/
/*アニメーションのフレーム設定。全100コマアニメーションだと思って下さい。透明度(opacity)0%から透明度100%にする指定。*/
@keyframes menu1 {
0% {opacity: 0;}
100% {opacity: 1;}
}

/*スマホ用メニューブロック*/
#menubar-s {
	display: block;overflow: hidden;
	position: absolute;z-index: 10;
	width: 100%;
	top: 70px;					/*上から70pxの場所に配置*/
	border-top: 1px solid #fff;	/*上の線の幅、線種、色*/
	animation-name: menu1;		/*上のkeyframesの名前*/
	animation-duration: 0.5S;	/*アニメーションの実行時間。0.5秒。*/
	animation-fill-mode: both;	/*アニメーションの完了後、最後のキーフレームを維持する*/
}
/*スマホ用メニューブロック　※index.html(.home)への追加設定*/
.home #menubar-s {
	top: 0px;
}
/*メニュー１個あたりの設定*/
#menubar-s li a {
	display: block;text-decoration: none;
	padding: 15px 10px 15px 20px;	/*上、右、下、左へのメニュー内の余白*/
	border-bottom: 1px solid #fff;	/*下の線の幅、線種、色*/
	background: rgba(0,0,0,0.8);	/*背景色*/
	color: #fff;		/*文字色*/
	font-size: 20px;	/*文字サイズ*/
}
/*現在表示中メニュー（current）*/
#menubar-s li.current a {
	color: #e8bf2e;	/*文字色*/
}
/*英語表記（飾り文字）*/
#menubar-s li a span {
	display: block;
	font-size: 12px;	/*文字サイズ*/
}

/*３本バーアイコン設定
---------------------------------------------------------------------------*/
/*３本バーブロック*/
#menubar_hdr {
	display: block;
	position: absolute;z-index: 20;
	top: 10px;	/*上から10pxの場所に配置*/
	right: 3%;	/*右から3%の場所に配置*/
	border: 1px solid #000;	/*枠線の幅、線種、色*/
	margin-bottom: 10px;
}
/*３本バーブロック　※index.html(.home)への追加設定*/
.home #menubar_hdr {
	top: 20px;	/*上から20pxの場所に配置*/
	border: 1px solid #fff;	/*枠線の幅、線種、色*/
}
/*アイコン共通設定*/
#menubar_hdr.close,
#menubar_hdr.open {
	width: 50px;	/*幅*/
	height: 50px;	/*高さ*/
}
/*三本バーアイコン*/
#menubar_hdr.close {
	background: url(../images/icon_menu.png) no-repeat center top/50px;
}
/*三本バーアイコン　※index.html(.home)への追加設定*/
.home #menubar_hdr.close {
	background: url(../images/icon_menu2.png) no-repeat center top/50px;
}
/*閉じるアイコン*/
#menubar_hdr.open {
	background: url(../images/icon_menu.png) no-repeat center bottom/50px;
}
/*閉じるアイコン　※index.html(.home)への追加設定*/
.home #menubar_hdr.open {
	background: url(../images/icon_menu2.png) no-repeat center bottom/50px;
}




/*contents（mainとsubを囲むブロック）
---------------------------------------------------------------------------*/
#contents {
	clear: both;
	overflow: hidden;
	padding-bottom: 5px;
	background-color: #FFFFFF;
	padding-top: 20px;
}
/*※index.html(.home)への追加設定*/
.home #contents {
	width: 100%;
	/*background: url(../images/img_momiji.png) no-repeat left bottom;*/	/*背景もみじ画像の読み込み。左、下に配置。*/
}

/*mainコンテンツ
---------------------------------------------------------------------------*/
#main {
	/*float: right;*/	/*右に回り込み*/
	width: 100%;		/*ブロックの幅*/
}

/*メインエリア設定=====================================*/

#contentsWrapper {
	width:100%;
}

/*共通設定=====================================*/

/*パンくずリスト*/
.panList {
	height:30px;
	line-height:30px;
	font-size:80%;
	color:#000;
}
h2.pageTitle {
	clear: both;
	margin: 20px 0;	/*見出しの下に空けるスペース*/
	font-size: 110%;		/*文字サイズ*/
	background: #434343;	/*背景色（古いブラウザ用）*/
	background: linear-gradient(#434343, #000)!important;	/*背景グラデーション*/
	border: 1px solid #000;		/*線の幅、線種、色*/
	padding: 10px 20px;		/*上下、左右への見出し内の余白*/
	color: #F8F8F8!important;			/*文字色*/
	letter-spacing: 0em!important;	/*文字間隔を少し広くとる設定*/
	line-height: 1.6em;
	font-weight: bold;
}


h3.subMidashi {
	/*background:url(../images/bgMidashi.png) repeat-x;
	height:50px;
	padding:0;
	margin:0 0 20px;
	border:#ccc solid 1px;
	font-size:110%!important;*/
	margin: 20px 0;	/*見出しの下に空けるスペース*/
	font-size: 110%;		/*文字サイズ*/
	background: #D9D9D9;	/*背景色（古いブラウザ用）*/
	background: linear-gradient(#D9D9D9,#ffffff)!important;	
	height: auto;
	padding: 3px;		/*上下、左右への見出し内の余白*/
	border: #ccc solid 1px;
}

h3.subMidashi .midashiText{
/*	color: #333;
	background: url(../images/bgMidashiIcon.png) 16px center no-repeat;
	display: block;
	line-height: 50px;
	padding: 0 0 0 30px;
	border: #FFF solid 1px;
	font-weight: bold;*/
	color: #333;
	background-repeat: no-repeat;
	background-position: 16px 14px;
	background-image: url(../images/bgMidashiIcon.png);
	display: block;
	line-height: 40px;
	padding: 0 0 0 30px;
	/*border: #FFF solid 1px;*/
	font-weight: bold;
}

h3.subMidashi .midashiTextAward{
	color: #333;
	background-repeat: no-repeat;
	background-position: 20px 3px;
	/*background-image: url(../images/oukan.gif);*/
	background-image: url(../images/king.png);
	display: block;
	line-height: 40px;
	padding: 0 0 0 50px;
	/*border: #FFF solid 1px;*/
	font-weight: bold;
}



.pageTitleaward {
	margin:0 0 20px;
	padding:0;
	height:100px;
	line-height:30px;
}


.textBox {
	padding:10px;
}

.photo {
	float:left;
	margin:0 20px 0 0;
}

/*共通設定 ここまで=====================================*/
/*概要ページ=====================================*/


/*#gphoto {
	float: right;
	margin: 0 0 20px;
	width: 260px;
}
.gphoto380 {
	float:left;
	margin:0 20px 0 0;
}*/

/*#gconmain {
	width: auto;
	float: left;
	margin: 0 0 20px;
	font-size: 93%;
}
*/
#gmain {
	width:100%;
	float:left;
	margin:0 0 20px;
	font-size:93%;
}

#gmain .gcon dl {
	width: auto;
	margin-top: 0;
	margin-left: 10px;
	margin-bottom: 15px;
	padding: 0 10px 10px;
	/*border: 4px #EEEEEE solid;*/
}

#gmain .gcon dl dt {
	float: left;
	width: 42em;
	padding: 8px 20px;
	line-height: 1.6em;
	text-align: left;
	background-image: url(../images/bgMidashiIcon10.png);
	background-repeat: no-repeat;
	background-position: 2px 15px;
	}
#gmain .gcon dl dd {
	padding: 8px 20px;
	line-height: 1.6em;
	text-align: left;
	border-bottom: 1px #CCCCCC dotted;
	margin: 0;
}

#gmain .gcon .category {
	background:#666;
	margin:0 5px 0 0;
	padding:0 5px;
	color:#FFF;
}

.gtextBox {
	width: auto;
	padding: 20px 10px;
	margin: 0;
	line-height: 1.8em;
	}

.gtextBoxeng {
	width: auto;
	padding: 20px 10px;
	margin: 0;
	line-height: 1.8em;	
	word-break: keep-all;
}
.gtextBoxengb {
	width: auto;
	padding: 20px 10px;
	margin: 20px 0px;
	line-height: 1.8em;
	word-break: normal;
	border: 5px double #7BB1E4;
}

.gtextBoxcenter {
	width: auto;
	padding: 20px 10px;
	margin: 0;
	line-height: 1.8em;
	text-align: center;	
}

.midashitextBox {
	padding: 3px 30px;
	margin: 5px 0;
	background-color: #75ABFF;
	font-size: 110%;
	text-align: center;
	border-radius: 10px;
	width: 50%;
	background-position: 0% 0%;
}
#main .snsbotan {
	width:100px !important;
	margin-top: 10px;
	margin-right: 0;
	margin-left: 0;
	margin-bottom: 15px;
	padding-top: 0;
	padding-left: 10px;
	height: 50px;
}

/*　準備中　*/
.nonetextBox {
	width: auto;
	padding-top: 30px;
	padding-right: 30px;
	padding-left: 30px;
	padding-bottom: 30px;
	margin-top: 0px;
	margin-right: 0;
	margin-bottom: 0;
	font-size: 36px;
	text-align: center;
	color: #B80508;
	font-weight: bold;
}



/*　選抜校　ページ=====================================*/


.s-pro-select {
    margin:0;
	padding:0;
	width:auto;
}

.s-pro {
	float: right;
	padding-top: 3px;
	padding-bottom: 3px;
	margin-top: 5px;
	margin-right: 10px;
	margin-bottom: 5px;
	background-color: #F7BCBC;
	font-size: 130%;
	width: 220px;
	text-align: center;
	border-radius: 10px;
	text-shadow: 1px 1px #ABABAB;
}


.stmidashi {
	padding-right: 15px;
	padding-left: 30px;
	font-size: 130%;
	line-height: 2em;
	text-align: left;
	color: #222222;
	margin-top: 10px;
	border-bottom: 1px dotted #CC0000;
	border-left: 8px solid #CC0000;
	background-image: url(../images/bgMidashiIcon07.png);
	background-repeat: no-repeat;
	background-position: 12px 12px;
	font-weight: bold;
	width: auto;
	}
.s-pro-main {
	width: 640px;
	float: left;
	margin-top: 0;
	margin-right: 0;
	margin-left: 20px;
	margin-bottom: 20px;
	font-size: 120%;
	color: #580000;
	line-height: 1.4em;
}
/*写真下部のコメント*/
.s-pro-main-comment {
	width: 920px;
	float: left;
	margin-top: 0;
	margin-right: 0;
	margin-left: 20px;
	margin-bottom: 20px;
	font-size: 120%;
	color: #580000;
	line-height: 1.4em;
}
/*別窓用タイトル*/
.s-pro-main-title {
	width: 1000px;
	float: left;
	margin-top: 0;
	margin-right: 0;
	margin-left: 20px;
	margin-bottom: 20px;
	font-size: 120%;
	color: #580000;
	line-height: 1.4em;
}
/*別窓用タイトルココマデ*/

/*　トップ実施報告書　*/
#houkoku {
	margin: 0 0 20px;
	width: 100%;
}
#houkoku .houkokuList {
	padding-top: 20px;
	padding-bottom: 50px;
}

#houkoku .houkokuList ul {
	margin:0;
	padding:0;
	list-style:none;
}

#houkoku .houkokuList ul li {
	margin-top: 0px;
	margin-right: 5px;
	margin-left: 5px;
	margin-bottom: 10px;
	padding: 0;
	border: solid #ccc 1px;
	list-style: none;
	float: left;
	width: auto;
}

#houkoku .houkokuList ul li a {
	padding-top: 10px;
	padding-right: 10px;
	padding-left: 34px;
	padding-bottom: 0px;
	display: block;
	background-repeat: no-repeat;
	background-position: 18px 15px;
	background-image: url(../images/bgMidashiIcon02.png);
	color: #333;
	font-weight: bold;
	text-decoration: none;
	line-height: 1.4em;
}

#houkoku .houkokuList ul li a.eng {
	padding-top: 0px;
	padding-right: 10px;
	padding-left: 12px;
	padding-bottom: 5px;
	display: block;
	background-image: none !important;
	color: #333;
	font-weight: lighter;
	text-decoration: none;
	font-size: 85% !important;
}

#houkoku .houkokuList ul li a:hover,
#houkoku .houkokuList ul li a:active {
	color: #999;
}
#houkoku .houkokuList ul li a .eng,
#houkoku .houkokuList .subMidashi {
	margin:0 !important;
}



/*h2タグ設定*/
#main h2 {
	clear: both;
	margin-bottom: 20px;	/*見出しの下に空けるスペース*/
	font-size: 20px;		/*文字サイズ*/
	background: #fff;	/*背景色（古いブラウザ用）*/
	background: linear-gradient(#fff, #dadada);	/*背景グラデーション*/
	border: 1px solid #000;		/*線の幅、線種、色*/
	padding: 10px 20px;		/*上下、左右への見出し内の余白*/
	color: #000;			/*文字色*/
	letter-spacing: 0.1em;	/*文字間隔を少し広くとる設定*/
	line-height: 1.6em;
	font-weight: bold;
}
/*h2タグの１文字目への追加設定*/
#main h2::first-letter {
	border-left: 3px solid #999;		/*左側のアクセントラインの幅、線種、色*/
	padding-left: 15px;	/*ラインと文字との間に空けるスペース*/
}
/*h3タグ設定*/
#main h3 {
	clear: both;
	/*margin-bottom: 20px;*/	/*見出しの下に空けるスペース*/
	/*font-size: 18px;*/	/*背景色（古いブラウザ用）*/
	/*background-color: #C0DDF5 #fff;*/	/*背景グラデーション*/
	border: 1px solid #555;		/*線の幅、線種、色*/
	font-size: 110%;	/*padding: 5px 20px;	*/	/*上下、左右への見出し内の余白*/	/*background-image: -webkit-linear-gradient(270deg,rgba(255,255,255,1.00) 0%,rgba(192,221,245,1.00) 100%);
	background-image: -moz-linear-gradient(270deg,rgba(255,255,255,1.00) 0%,rgba(192,221,245,1.00) 100%);
	background-image: -o-linear-gradient(270deg,rgba(255,255,255,1.00) 0%,rgba(192,221,245,1.00) 100%);
	background-image: linear-gradient(180deg,rgba(255,255,255,1.00) 0%,rgba(192,221,245,1.00) 100%);*/
	font-weight: bold;
}
/*mainコンテンツのh4タグの設定*/
#main h4 {
	clear: both;
	margin-bottom: 20px;	/*見出しの下にとるスペース*/
	font-size: 18px;		/*文字サイズ*/
	border-bottom: 1px solid #fff;	/*下線の幅、線種、色（古いブラウザ用）*/
	border-bottom: 1px solid rgba(255,255,255,0.5);	/*下線の幅、線種、色。255,255,255は白の事で0.5は50%色がついた状態の事。*/
	padding-left: 20px;	/*左に空ける余白*/
}
/*hタグに画像を使った場合用のスタイル*/
#main .img {
	padding: 0 !important;
	border: 0 !important;
	background: none !important;
}
/*段落タグ設定*/
#main p {
	padding: 0px 20px 20px;	/*上、左右、下への余白*/
}
/*他。微調整。*/
#main p + p {
	margin-top: -5px;
	line-height: 1.8em;
}
#main h2 + p,
#main h3 + p,
#main h4 + p {
	/*margin-top: -10px;*/
	margin-top: 10px;
	line-height: 2em;
}
#main section + section {
	margin-top: 40px;
}

/*ボックス（list）設定
---------------------------------------------------------------------------*/
/*ボックス１個あたりの設定*/
#main .list {
	position: relative;overflow: hidden;
	background: #fff;		/*背景色*/
	color: #666;			/*文字色*/
	margin-bottom: 20px;	/*ボックス同士の上下間の余白*/
	padding: 20px;			/*ボックス内の余白。ここを変更する場合は、下の「#main .list a」の「margin」と「padding」の数字も変更。*/
}
#main .list a {
	overflow: hidden;display: block;text-decoration: none;
	margin: -20px;	/*ボックス内の余白。ここを変更する場合は、上の「#main .list」の「padding」の数字も変更。※マイナスを必ずつけて下さい。*/
	padding: 20px;	/*ボックス内の余白。ここを変更する場合は、上の「#main .list」の「padding」の数字も変更。*/
	color: #666;	/*文字色*/
}
/*ボックスにリンク指定がされた場合に出る「→」マーク*/
#main .list a::before {
	position: absolute;text-align: center;
	content: "→";		/*この文字を出す。他の文字に変えても可だが機種依存文字は化けるので使わない。*/
	right: 20px;		/*ボックスの右から20pxの場所に配置*/
	bottom: 20px;		/*ボックスの下から20pxの場所に配置*/
	background: #ccc;	/*背景色*/
	color: #fff;		/*文字色*/
	border: 1px solid #fff;	/*枠線の幅、線種、色*/
	width: 30px;		/*幅*/
	line-height: 30px;	/*高さ*/
}
/*マウスオン時の「→」マークの背景色*/
#main .list a:hover::before {
	background: #202020;
}
/*ボックス内の画像設定*/
#main .list figure {
	width: 30%;			/*画像の幅*/
	float: left;		/*左に回り込み*/
	margin-right: 20px;	/*画像の右側に空けるスペース*/
}
/*ボックス内のh4（見出し）タグ設定*/
#main .list h4 {
	clear: both;
	padding: 0;
	border-bottom: none;
	font-size: 24px;	/*文字サイズ*/
	color: #333;		/*文字色*/
	border-bottom: 1px solid #ccc;	/*下線の幅、線種、色*/
	margin-bottom: 10px;
}
/*ボックス内のh4（見出し）タグの１文字目への設定。左のアクセントラインです。*/
#main .list h4::first-letter {
	border-left: 3px solid #202020;	/*左の線の幅、線種、色*/
	padding-left: 10px;	/*枠線と文字との間の余白*/
}
/*ボックス内のp（段落）タグ設定*/
#main .list p {
	padding: 0;
}

/*list内のアイコン（シニア向け、ご家族向け、カップル向け）
---------------------------------------------------------------------------*/

#main .mainimgmap img {
            width: 100%;
            height: auto;
        }





/*アイコン全体を囲むボックス*/
ul.mark {
	margin-top: -20px;	/*ボックスの上にくっつける為の指定*/
	float: right;		/*ボックスを右側に配置する*/
}
/*アイコン１個あたりの設定*/
ul.mark li {
	line-height: 1;
	float: left;		/*左に回り込み*/
	background: #999;	/*デフォルトの背景色。グレー色。*/
	color: #fff;		/*文字色*/
	font-size: 12px;	/*文字サイズ*/
	padding: 5px 10px;	/*上下、左右へのアイコン内の余白*/
	margin-right: 5px;	/*アイコンの左右間に空けるスペース*/
	margin-bottom: 5px;	/*アイコンの上下間に空けるスペース*/
}
/*mark1（シニア向け）への追加設定*/
ul.mark .mark1 {
	background: #604781;	/*背景色*/
}
/*mark2（ご家族向け）への追加設定*/
ul.mark .mark2 {
	background: #668d22;	/*背景色*/
}
/*mark3（カップル向け）への追加設定*/
ul.mark .mark3 {
	background: #c8436f;	/*背景色*/
}
/*mark4（キャンペーン向け）への追加設定*/
ul.mark .mark4 {
	background: #e38000;	/*背景色*/
}

/*subコンテンツ（左側のブロック）
---------------------------------------------------------------------------*/


/*box
---------------------------------------------------------------------------*/
.box {
	background: #333;	/*背景色*/
	padding: 10px;					/*ボックス内の余白*/
	margin-bottom: 20px;			/*ボックスの下に空けるスペース*/
}
/*box内にsubmenuがある場合、下のmarginをリセットする*/
.box .submenu {
	margin-bottom: 0;
}


/*フッター設定
---------------------------------------------------------------------------*/
footer {
	width: auto;
	margin: auto;
	clear: both;
	font-size: 85%;		/*文字サイズ*/
	background: #FFF url(../images/bg1.png) no-repeat center center;	/*背景色と背景画像*/
	color: #333;		/*文字色*/
	/*text-align: center;*/	/*文字をセンタリング*/
	/*padding: 10px;*/		/*フッター内の余白*/
	line-height: 1.6em;
}
.home footer {background: none;}
.home footer, .home footer a {color: #fff;}
footer a {text-decoration: none;color: #333;}
footer .pr {display: block;font-size: 80%;}

#footerMenu {
	width: 100%;
	/*height: auto;*/
	background: #333;	/*背景色*/
		}

#footerMenu ul {
	background: #333;	/*背景色*/
	padding: 10px;		/*ボックス内の余白*/
	margin-bottom: 20px;	/*ボックスの下に空けるスペース*/
}
/* ↓フッターナビ　文字に合わせて改行するので見やすい*/
#footerMenu ul li{
	margin: 0;
	padding-top: 0px;
	padding-right: 20px;
	padding-left: 30px;
	padding-bottom: 10px;
	list-style: none;
	float: left;
	line-height: 2em;
	background-repeat: no-repeat;
	background-position: left 5px;
	background-image: url(../images/bgFooterIcon.png);
	color: #E8E8E8;
}
/* ↓フッターナビ　100％を８等分するので、最大画面で見るときだけいいけど、他は見にくい*/
/*#footerMenu ul li{
	width: 10%;
	text-align: center;
	margin: 0;
	padding-top: 0px;
	padding-right: 5px;
	padding-left: 15px;
	padding-bottom: 10px;
	list-style: none;
	float: left;
	line-height: 2em;
	background-repeat: no-repeat;
	background-position: left 5px;
	background-image: url(../images/bgFooterIcon.png);
	color: #E8E8E8;
}*/
#footerMenu ul a{
	color:#FFF;
	text-decoration:none;
}
#footerMenu ul a:hover{
	text-decoration:underline;
}

#footerAddress {
	font-size: 110%;
	text-align: right;
	padding: 10px;
	line-height: 25px;
}

#footerAddress .ft130 {
	font-size: 120%;
	padding: 10px 0;
	line-height: 25px;
	font-weight: bold;
}	

.copyright {
	margin: 0;
	padding-top: 10px;
	padding-right: 0;
	padding-left: 0;
	padding-bottom: 20px;
	text-align: center;
	font-size: 93%;
}

/*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
/*h2の一部文字小さめ*/
.h2ss {font-size: 84%!important;
	letter-spacing: 0!important;	/*文字間隔を少し広くとる設定*/
}
/*ブロック全体の設定*/


#new dl {
	padding: 0px 20px;	/*上下、左右へのボックス内の余白*/
	margin-bottom: 20px;	/*下に空けるスペース*/
	background-color: #FFFFFF;
}

/*タイトル*/
#new dt {
	float: left;	/*左に回り込み*/
	width: 15em;		/*幅*/
	letter-spacing: 0;
	color: #0076C3;
}
/*内容*/
#new dd {
	padding-left: 15em;	/*左に空ける余白*/
}

/*　フェスティバル日程　全体の設定*/
#fesexc dl {
	padding: 0px 20px;	/*上下、左右へのボックス内の余白*/
	margin-bottom: 20px;	/*下に空けるスペース*/
	background-color: #FFFFFF;
}
/*項目設定*/
#fesexc dt {
	font-size: 90%;
	float: left;	/*左に回り込み*/
	width: 40%;		/*幅*/
	letter-spacing: 0.1em;
}
/*内容設定*/
#fesexc dd {
	font-size: 90%;
	padding-left: 40%;	/*左に空ける余白*/
}


/*　フェスティバル日程　全体の設定 日本語　上下*/
#fesschedule {
	text-align: left;
}
#fesschedule dl {
	padding: 0px 20px;	/*上下、左右へのボックス内の余白*/
	margin-bottom: 20px;	/*下に空けるスペース*/
	background-color: #FFFFFF;
}
/*項目設定*/
#fesschedule dt {
	font-size: 90%;
	float: left;	/*左に回り込み*/
	width: 50px;		/*幅*/
	letter-spacing: 0.1em;
}
/*内容設定*/
#fesschedule dd {
	font-size: 90%;
	padding-left: 100px;	/*左に空ける余白*/
}
/*テキスト*/
#fesschedule p {
	font-size: 90%;
}
#fesschedule .bfont {
    font-weight: bold;
}

/*　フェスティバル日程　全体の設定 英語　上下*/
#fesscheduleeng dl {
	padding: 0px 20px;	/*上下、左右へのボックス内の余白*/
	margin-bottom: 20px;	/*下に空けるスペース*/
	background-color: #FFFFFF;
}
/*項目設定*/
#fesscheduleeng dt {
	font-size: 90%;
	float: left;	/*左に回り込み*/
	width: 150px;		/*幅*/
}
/*内容設定*/
#fesscheduleeng dd {
	font-size: 90%;
	padding-left: 150px;	/*左に空ける余白*/
}
/*テキスト*/
#fesscheduleeng p {
	font-size: 90%;}
#fesscheduleeng .bfont {
    font-weight: bold;
}

@media screen and (max-width:480px){
	/*　フェスティバル日程　全体の設定 日本語　上下*/
#fesschedule dl {
	padding: 0px 20px;	/*上下、左右へのボックス内の余白*/
	margin-bottom: 10px;	/*下に空けるスペース*/
	background-color: #FFFFFF;
}
/*項目設定*/
#fesschedule dt {
	font-size: 100%;
	font-weight: bold;
	float: left;	/*左に回り込み*/
	width: 100%;		/*幅*/
	letter-spacing: 0.1em;
}
/*内容設定*/
#fesschedule dd {
	font-size: 100%;
	padding-left: 10px;	/*左に空ける余白*/
}
/*テキスト*/
#fesschedule p {
	font-size: 100%;
}
#fesschedule .bfont {
	font-size: 110%;
    font-weight: bold;
}

/*　フェスティバル日程　全体の設定 英語　上下*/
#fesscheduleeng dl {
	padding: 0px 20px;	/*上下、左右へのボックス内の余白*/
	margin-bottom: 10px;	/*下に空けるスペース*/
	background-color: #FFFFFF;
}
/*項目設定*/
#fesscheduleeng dt {
	font-size: 100%;
	font-weight: bold;
	float: left;	/*左に回り込み*/
	width: 100%;		/*幅*/
}
/*内容設定*/
#fesscheduleeng dd {
	font-size: 100%;
	padding-left: 10px;	/*左に空ける余白*/
}
/*テキスト*/
#fesscheduleeng p {
	font-size: 110%;}
#fesscheduleeng .bfont {
    font-weight: bold;
}
}




/*　後援・協賛　全体の設定*/
#support dl {
	padding: 0px 20px;	/*上下、左右へのボックス内の余白*/
	margin-bottom: 20px;	/*下に空けるスペース*/
	background-color: #FFFFFF;
}
/*項目設定*/
#support dt {
	font-size: 90%;
	float: left;	/*左に回り込み*/
	width: 11em;		/*幅*/
	/*letter-spacing: 0.1em;*/
	line-height: 1.4em;
}
/*内容設定*/
#support dd {
	font-size: 90%;
	padding-left: 11em;	/*左に空ける余白*/
	line-height: 1.4em;
}

/*Informationページのページ内メニュー
---------------------------------------------------------------------------*/
/*メニューボックス全体の設定*/
#pagenav {
	overflow: hidden;
	margin-bottom: 20px;
	color: #fff;		/*文字色*/
	text-align: center;	/*内容をセンタリング*/
	padding: 10px;		/*ボックス内余白*/
	background: #333;	/*背景色（古いブラウザ用）*/
	background: rgba(0,0,0,0.5);	/*背景色。0,0,0は黒の事で0.5は50%色がついた状態の事。*/
}
#pagenav a {
	color: #fff;	/*リンクテキストの文字色*/
}
/*メニュー１個あたりの設定*/
#pagenav li {
	display: inline-block;	/*横並びにさせる設定*/
	margin: 5px;			/*メニュー同士に空けるスペース*/
}

/*テーブル
---------------------------------------------------------------------------*/
/*テーブル１行目に入った見出し部分（※caption）*/
.ta1 caption {
	border: 1px solid #ccc;	/*テーブルの枠線の幅、線種、色*/
	border-bottom: none;	/*下線だけ消す*/
	text-align: left;		/*文字を左寄せ*/
	background: #eee;		/*背景色*/
	color: #666;			/*文字色*/
	font-weight: bold;		/*太字に*/
	padding: 10px;			/*ボックス内の余白*/
	line-height: 1.6em;
}
/*ta1設定*/
.ta1 {
	table-layout: fixed;
	width: 100%;
	margin: 0 auto 20px;
	background: #fff;	/*背景色*/
	color: #666;			/*文字色*/
}
.ta1, .ta1 td, .ta1 th {
	border: 1px solid #ccc;	/*テーブルの枠線の幅、線種、色*/
	padding: 10px;	/*ボックス内の余白*/
	/*word-break: break-all;*/
	word-break: normal;
}
/*ta1の左側ボックス*/
.ta1 th {
	width: 140px;		/*幅*/
	text-align: center;	/*センタリング*/
	font-weight: normal;
}
.ta1 td a{
	color: #0098D0;
	text-decoration: none;
}
/*ボタン（btn）
---------------------------------------------------------------------------*/
input[type="submit"].btn,
input[type="button"].btn,
input[type="reset"].btn {
	padding: 5px 20px;		/*上下、左右へのボックス内の余白*/
	border-radius: 3px;		/*角丸のサイズ*/
	color: #666;			/*文字色*/
	background: #fff;		/*背景色（古いブラウザ用）*/
	background: linear-gradient(#fff, #eee);/*背景グラデーション*/
}
/*マウスオン時*/
input[type="submit"].btn:hover,
input[type="button"].btn:hover,
input[type="reset"].btn:hover {
	background: #fff;	/*背景色*/
	color: #111;		/*文字色*/
}

/*よく頂く質問ページ
---------------------------------------------------------------------------*/
/*ブロック全体*/
.faq {
	padding: 0px 20px;	/*上下、左右への余白*/
}
/*質問の設定*/
.faq dt {
	color: #e8bf2e;	/*文字色*/
	padding-top: 15px;
	margin-bottom: 10px;
}
/*回答の設定*/
.faq dd {
	border-bottom: 1px solid rgba(255,255,255,0.3);	/*下線の幅、線種、色*/
	overflow: hidden;
	padding-bottom: 15px;
}

/*ご予約状況ボックス
---------------------------------------------------------------------------*/
.man span {
	color: #BE8406;	/*「■」の色*/
}

/*PAGE TOP（↑）設定
---------------------------------------------------------------------------*/
/*アニメーションのキーフレーム設定（変更不要）*/
@keyframes scroll {
0% {opacity: 0;}
100% {opacity: 1;}
}
/*デフォルトでは非表示に*/
body .nav-fix-pos-pagetop a {display: none;}
/*ボタンの設定*/
body.is-fixed-pagetop .nav-fix-pos-pagetop a {
	display: block;text-decoration: none;text-align: center;z-index: 100;position: fixed;
	width: 60px;		/*幅*/
	line-height: 60px;	/*高さ*/
	border-radius: 50%;	/*角丸のサイズ。円形にする。正方形がいいならこの１行削除。*/
	bottom: 30px;	/*下から30pxの場所に配置*/
	right: 3%;		/*右から3%の場所に配置*/
	background: #000;	/*背景色（古いブラウザ用）*/
	background: rgba(0,0,0,0.6);	/*背景色。0,0,0は黒の事で0.6は色が60%ついた状態の事。*/
	color: #fff;	/*文字色*/
	border: 1px solid #fff;	/*枠線の幅、線種、色*/
	animation-name: scroll;	/*上のアニメーションで指定しているkeyframesの名前（scroll）*/
	animation-duration: 1S;	/*アニメーションの実行時間*/
	animation-fill-mode: forwards;	/*アニメーションの完了後、最後のキーフレームを維持する*/
}
/*マウスオン時*/
body.is-fixed-pagetop .nav-fix-pos-pagetop a:hover {
	background: #999;	/*背景色*/
}

/*「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;
}

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

/*その他
---------------------------------------------------------------------------*/
.look2 {background: #000;background: rgba(0,0,0,0.3);padding: 5px 10px;border-radius: 4px;}
.look {background: #cc0000;background: rgba(0,0,0,0.3);padding: 5px 10px;border-radius: 4px;}
.mb15,.mb1em {margin-bottom: 15px !important;}
.mb30 {margin-bottom: 30px !important;}
.clear {clear: both;}
ul.disc {padding: 0 20px 20px 40px;list-style: disc;}
.color1, .color1 a {
	color: #000000;
	font-size: 1.1em;
}
.color2, .color2 a {
	color: #0033AA;
	text-decoration: underline;	
}
.color3 {
	color: #0033AA;
}
.pr {font-size: 10px;}
.wl {width: 96%;}
.ws {width: 50%;}
.c {text-align: center;}
.r {text-align: right;}
.l {text-align: left;}
img.fr {float: right;margin-left: 10px;margin-bottom: 10px;width: 30%;}
img.fl {float: left;margin-right: 10px;margin-bottom: 10px;width: 30%;}
.fr {float: right;}
.fl {float: left;}
.big1 {font-size: 28px;letter-spacing: 0.1em;}
.mini1 {font-size: 11px;display: inline-block;line-height: 1.5;}
.sh {display: none;}



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

/*ヘッダー（ロゴが入った最上段のブロック）
---------------------------------------------------------------------------*/
header {
	background: #fff; url(../images/bg1.png) no-repeat right center;	/*背景色、背景画像の読み込み。右側、天地中央に配置。*/
	/*background: #fff;*/	/*背景画像をなくして背景色のみにする*/
	margin-bottom: 20px;	/*ヘッダーと下のコンテンツとの間に空けるスペース*/
}
/*ヘッダーブロックのinner*/
header .inner {
	height: auto;
	position: static;
	text-align: center;
	padding: 20px 3%;
}
/*スマホ用タイトルロゴを表示*/
                            /*…75行目付近の記述で不要*/
/*header #logo-s img {
	position:static;
	padding-bottom: 5px;
	left: 1%;
}*/

header #logo-s img {display: inline;}

/*PC用タイトルロゴを表示させない*/
header #logo img {display: none;}	
	
/*ロゴ画像　※index.html(.home)への追加設定*/
.home header #logo-s img {
	padding-bottom: 0px;
}
/*「ご予約・お問い合わせ」ボタン*/
header #toiawase a {
	position: static;
	border-radius: 6px;
	max-width: 400px;
	margin: 0 auto;
}

/*メインメニュー
---------------------------------------------------------------------------*/
/*アニメーションのフレーム設定。全100コマアニメーションだと思って下さい。透明度(opacity)0%から透明度100%にする指定。*/
@keyframes menu1 {
0% {opacity: 0;}
100% {opacity: 1;}
}
/*スマホ用メニューブロック*/
#menubar-s {
	display: block;
	overflow: hidden;
	position: absolute;
	z-index: 10;
	width: 100%;
	top: 66px;					/*上から70pxの場所に配置*/
	border-top: 1px solid #fff;	/*上の線の幅、線種、色*/
	animation-name: menu1;		/*上のkeyframesの名前*/
	animation-duration: 0.5S;	/*アニメーションの実行時間。0.5秒。*/
	animation-fill-mode: both;	/*アニメーションの完了後、最後のキーフレームを維持する*/
	/*left: -77px;*/
}
/*スマホ用メニューブロック　※index.html(.home)への追加設定*/
.home #menubar-s {
	top: 0px;
}
/*メニュー１個あたりの設定*/
#menubar-s li a {
	display: block;text-decoration: none;
	padding: 15px 10px 15px 20px;	/*上、右、下、左へのメニュー内の余白*/
	border-bottom: 1px solid #fff;	/*下の線の幅、線種、色*/
	background: rgba(0,0,0,0.8);	/*背景色*/
	color: #fff;		/*文字色*/
	font-size: 20px;	/*文字サイズ*/
}
/*現在表示中メニュー（current）*/
#menubar-s li.current a {
	color: #e8bf2e;	/*文字色*/
}
/*英語表記（飾り文字）*/
#menubar-s li a span {
	display: block;
	font-size: 12px;	/*文字サイズ*/
}
/*PC用メニューを非表示にする*/
#menubar {
	display: none;
}

/*３本バーアイコン設定
---------------------------------------------------------------------------*/
/*３本バーブロック*/
#menubar_hdr {
	display: block;
	position: absolute;z-index: 20;
	top: 10px;	/*上から10pxの場所に配置*/
	right: 3%;	/*右から3%の場所に配置*/
	border: 1px solid #000;	/*枠線の幅、線種、色*/
	margin-bottom: 10px;
}
/*３本バーブロック　※index.html(.home)への追加設定*/
.home #menubar_hdr {
	top: 20px;	/*上から20pxの場所に配置*/
	border: 1px solid #fff;	/*枠線の幅、線種、色*/
}
/*アイコン共通設定*/
#menubar_hdr.close,
#menubar_hdr.open {
	width: 50px;	/*幅*/
	height: 50px;	/*高さ*/
}
/*三本バーアイコン*/
#menubar_hdr.close {
	background: url(../images/icon_menu.png) no-repeat center top/50px;
}
/*三本バーアイコン　※index.html(.home)への追加設定*/
.home #menubar_hdr.close {
	background: url(../images/icon_menu2.png) no-repeat center top/50px;
}
/*閉じるアイコン*/
#menubar_hdr.open {
	background: url(../images/icon_menu.png) no-repeat center bottom/50px;
}
/*閉じるアイコン　※index.html(.home)への追加設定*/
.home #menubar_hdr.open {
	background: url(../images/icon_menu2.png) no-repeat center bottom/50px;
}

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

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

}



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

/*全体の設定
---------------------------------------------------------------------------*/
body {
	font-size: 12px;	/*文字サイズ*/
	line-height: 1.5;	/*行間*/
}

/*ヘッダー（ロゴが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*ロゴ画像*/
header #logo-s img {
	width: 80%;
	text-align: left;
	padding-bottom: 30px;
	/*width: 300px;
	padding-bottom: 30px;*//*最初の指定*/
}

/*mainコンテンツ
---------------------------------------------------------------------------*/
#main h2, #main h3, #main h4 {
	font-size: 14px;
	padding-left: 10px;
	padding-right: 10px;
}
/*段落タグ設定*/
#main p {
	padding: 0px 10px 20px;	/*上、左右、下への余白*/
}

/*ボックス（list）設定
---------------------------------------------------------------------------*/
/*ボックス１個あたりの設定*/
#main .list {
	padding: 10px;	/*ボックス内の余白。ここを変更する場合は、下の「#main .list a」の「margin」と「padding」の数字も変更。*/
}
#main .list a {
	margin: -10px;	/*ボックス内の余白。ここを変更する場合は、上の「#main .list」の「padding」の数字も変更。※マイナスを必ずつけて下さい。*/
	padding: 10px;	/*ボックス内の余白。ここを変更する場合は、上の「#main .list」の「padding」の数字も変更。*/
}
/*ボックス内のh4（見出し）タグ設定*/
#main .list h4 {
	font-size: 16px;
}
/*ボックスにリンク指定がされた場合に出る「→」マーク*/
#main .list a::before {
	right: 10px;		/*ボックスの右から10pxの場所に配置*/
	bottom: 10px;		/*ボックスの下から10pxの場所に配置*/
	width: 20px;		/*幅*/
	line-height: 20px;	/*高さ*/
}

/*list内のアイコン（シニア向け、ご家族向け、カップル向け）
---------------------------------------------------------------------------*/
/*アイコン全体を囲むボックス*/
ul.mark {
	margin-top: -10px;	/*ボックスの上にくっつける為の指定*/
}
/*アイコン１個あたりの設定*/
ul.mark li {
	font-size: 10px;	/*文字サイズ*/
	padding: 2px 5px;	/*上下、左右へのアイコン内の余白*/
}

/*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
/*ブロック全体の設定*/
#new dl {
	padding: 0 10px;	/*上下、左右へのボックス内の余白*/
}

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

/*その他
---------------------------------------------------------------------------*/
.ws,.wl {width: 94%;}
.big1 {font-size: 16px;}
img.fr,img.fl {float: none;margin: 0;width: 100%;}
.sh {display:block;}
.pc {display:none;}

}
/*FaceBookとインフォ表示　2カラム*/
/* pc　800px以上 */
.infofb{
  overflow: hidden;
  width: 100%;
	  height: 100%;
  margin-left: auto;
  margin-right: auto;
}
.infoleft{
  float: left;
  width: 50%;
  height: auto;
margin-right: 5px;
/*  background-color: #ddd;*/
}
.fbright{
  float: right;
  width: 49%;
	text-align: center;
  /*height: auto;*/
height: auto;
}
.fbright h2{
 	text-align: left;
	text-align: left;
 }


/* スマホ　480px以下 */
@media only screen and (max-width: 480px) {
  .infofb{
    width: 100%;
	  height: 760px;
  }
  .infoleft{
	float: none;
	width: 100%;
	height:200px;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 30px;
 }
  .fbright{
    /*　floatを解除 */
    float: none;
    width: 100%;
	  	height:400px;
    margin-left: auto;
    margin-right: auto;
  }
}


/*　2カラム*/
/* pc　800px以上 */
.con2col{
  overflow: hidden;
  width: 100%;
	  height: 480px;
  margin-left: auto;
  margin-right: auto;
}
.conleft{
  float: left;
  width: 50%;
  height: auto;
margin-right: 5px;
/*  background-color: #ddd;*/
}
.conright{
  float: right;
  width: 49%;
	text-align: center;
  height: auto;
/*height: 430px;*/
}
.conright h2{
 	text-align: left;
 }

/*instagram みんなの投稿　800*/
.col2{
  overflow: hidden;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.colleft{
	float: left;
 text-align: center;
	width: 48%;
	margin-right: 2%;
}
.colright{
  float: right;
  width: 48%;
	margin-left: 2%;
	}
.colright h4{
	font-size: 1.6em!important;
margin-bottom: 10px;
		}
.colright p{
line-height: 1.8em; 
  border-top: 1px solid #333;
	padding-top: 20px!important;
		}
/*instagram みんなの投稿　800*/

/* スマホ　480px以下 */
@media only screen and (max-width: 480px) {
  .con2col{
    width: 100%;
  }
  .conleft{
	float: none;
	width: 100%;
	height:200px;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 30px;
 }
  .conright{
    /*　floatを解除 */
    float: none;
    width: 100%;
	  	height:300px;
    margin-left: auto;
    margin-right: auto;
  }
}
/*instagram みんなの投稿　800以下*/
@media only screen and (max-width: 767px) {
  .col2{
    width: 100%;
  }
  .colleft{
    float: none;
    width: 90%;
	  text-align: center;
    /*height: 200px;*/
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 30px;
  }
  .colright{
	/*　floatを解除 */
	float: none;
	width: 90%;
	margin-left: auto;
	margin-right: auto;
	font-size: 1.1em;
	line-height: 1.8em;
  }
}




/*　選抜校　ページ=====================================*/


.s-pro-select {
    margin:0;
	padding:0;
	width:auto;
}

.s-pro {
	float: right;
	padding-top: 3px;
	padding-bottom: 3px;
	margin-top: 5px;
	margin-right: 10px;
	margin-bottom: 5px;
	background-color: #F7BCBC;
	font-size: 130%;
	width: 220px;
	text-align: center;
	border-radius: 10px;
	text-shadow: 1px 1px #ABABAB;
}


.stmidashi {
	padding-right: 15px;
	padding-left: 30px;
	font-size: 130%;
	line-height: 2em;
	text-align: left;
	color: #222222;
	margin-top: 10px;
	border-bottom: 1px dotted #CC0000;
	border-left: 8px solid #CC0000;
	background-image: url(../images/bgMidashiIcon07.png);
	background-repeat: no-repeat;
	background-position: 12px 12px;
	font-weight: bold;
	width: auto;
	}
.s-pro-main {
	width: 640px;
	float: left;
	margin-top: 0;
	margin-right: 0;
	margin-left: 20px;
	margin-bottom: 20px;
	font-size: 120%;
	color: #580000;
	line-height: 1.4em;
}
/*写真下部のコメント*/
.s-pro-main-comment {
	width: 920px;
	float: left;
	margin-top: 0;
	margin-right: 0;
	margin-left: 20px;
	margin-bottom: 20px;
	font-size: 120%;
	color: #580000;
	line-height: 1.4em;
}
/*別窓用タイトル*/
.s-pro-main-title {
	width: 1000px;
	float: left;
	margin-top: 0;
	margin-right: 0;
	margin-left: 20px;
	margin-bottom: 20px;
	font-size: 120%;
	color: #580000;
	line-height: 1.4em;
gcompanyTable}
/*別窓用タイトルココマデ*/



.spro-photo {
    	margin:0;
	padding:0;
	width:auto;
	float:left;
}
.spro-photo ul{
	margin:0;
	padding:0;
	width:960px;
}

.spro-photo li{
	vertical-align: middle;
	margin-right: 5px;
	margin-left: 5px;
	margin-bottom: 30px;
	padding: 0;
	width: 150px;
	float: left;
	list-style-type: none;
	text-align: center;
	margin-top: 5px;
	position: static;
	height: 170px;

}

/*li 縦中央に　*/
.spro-photo ul li p {
			display: table-cell;
			text-align: center;
			vertical-align: middle;
			width: 150px !important;
			width: auto;
			height: 170px !important;
			height: auto;
		}

.spro-photo li a.spro-bigw {
	display: block;
	float: left;
	margin: 0px;
}

.spro-photo li a.spro-bigw,
a.spro-bigw img{
	margin-right: 5px;
	margin-left: 5px;
	margin-bottom: 30px;
	padding: 0;
	width: 150px;
	float: left;
	list-style-type: none;
	text-align: center;
	margin-top: 5px;
	position: static;
}

.spro-photo li a.spro-bigw:hover {
	border: none;
	cursor: default;
	}
	
.spro-photo li a.spro-bigw:hover img {
	width: 400px;
	height: 260px;
}



.spro-photo p{
	margin: 0;
	padding: 0;
	font-size: 94%;
	line-height: 1.1em;
	text-align: center;
	}

/*オンマウス*/

a.spro-bigh {
	display: block;
	float: left;
	margin: 0.3em 10px 0.3em 0;
}
a.spro-bigh img{
	position: absolute;
}
a.spro-bigh,
a.spro-bigh img{
	width: 90px;
	height: 140px;
}
a.spro-bigh:hover {
	border: none;
	cursor: default;
}
a.spro-bigh:hover img {
	width: auto;
	height: auto;
}
/*オンマウスここまで*/



.scompanyTable table {
	border-top: solid #999 1px;
	border-left: solid #999 1px;
	width: 90%;
	border-spacing: 0;
	margin-top: 0;
	margin-right: 0;
	margin-bottom: 30px;
	border-collapse: collapse;
	margin-left: 30px;
}

.scompanyTable table th{
	border-bottom:solid #999 1px;
	border-right:solid #999 1px;
	text-align:left;
	background:#E3E3E3;
	padding:10px;
}

.scompanyTable table td{
	border-bottom:solid #999 1px;
	border-right:solid #999 1px;
	padding:10px;
}

.stextBox {
	width: 940px;
	padding-top: 10px;
	padding-right: 10px;
	padding-left: 10px;
	padding-bottom: 10px;
	margin-top: 0px;
	margin-right: 0;
	margin-bottom: 0;
}



.sphoto380 {
	float:left;
	margin:0 20px 0 0;
}


/*　別窓ページ　閉じるボタン　*/
.opne-close {
	padding-top: 3px;
	padding-bottom: 3px;
	margin: 10px 30% 30px 30%;
	background-color: #DBDBDB;
	font-size: 130%;
	width: 40%;
	text-align: center;
	border-radius: 10px;
	text-shadow: 1px 1px #ABABAB;
	float: left;
}
/*　別窓ページ　*/
.opne-close a {
	text-decoration: none;
}

/*認証画面　*/
.clinicid {
	padding-top: 3px;
	padding-bottom: 3px;
	margin: 10px 30px;
	font-size: 120%;
	width: 90%;
	text-align: center;
	border-radius: 10px;
	text-shadow: 1px 1px #ABABAB;
	float: left;
}
/*クリニック掲示板へのリンク　*/
.clinicgo {
	width: 400px;
	padding: 8px 15px;
	margin: 10px auto 50px auto;
	background-color: #FFF5B5;
	font-size: 120%;
	border-radius: 15px;
	text-shadow: 1px 1px #ABABAB;
	text-align: center;
}
/*クリニック掲示板へのリンク 影付きボタン　*/
.btn-square-shadow {
  display: inline-block;
  padding: 0.5em 1em;
  text-decoration: none;
  background: #668ad8;/*ボタン色*/
  color: #FFF;
  border-bottom: solid 4px #627295;
  border-radius: 3px;
}
.btn-square-shadow:hover {
  /*カーソルをあてたとき*/
  -webkit-transform: translateY(4px);
  transform: translateY(4px);/*下に動く*/
  box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.2);/*影を小さく*/
　color: #FFF!important;
  border-bottom: none;
}



/*トップバナー5カラム*/
.item5 {
	padding: 0px;
	/*margin-top: -40px;*/
	background-color: #FFFFFF;
	text-align: center;
	line-height: 1.4em;
}
.item5 img {
  max-width: 98%;
text-align: center;
  height: auto;
}
.item5 p {
	text-align: left;
	width: 98%;
	line-height: 1.4em;
	font-size: 80%;
	border-left: 5px solid #9F9F9F;
	margin-left: 2px;
	padding-left: 5px;
}

@media ( min-width : 600px ){
    .flexbox5top {
    display: flex;
    flex-wrap: wrap;
	font-size: 100%;
	background-color: #FFFFFF;
    }
  .item5 {
    width: 20%;
  }
		.clinicgo {
	width: 80%;
	padding: 8px 15px;
	background-color: #FFF5B5;
	font-size: 120%;
	text-align: center;
}
}

.musicfont {
	font-size: 75%!important;
}


@media ( min-width : 480px ){

}



/* パソコンで見たときは"pc"のclassがついた画像が表示される */
/*@media screen and (min-width: 768px){
.pc { display: block!important; }
.sp { display: none!important; }
 }*/
.pc { display: block!important; }
.sp { display: none!important; }

/* スマートフォンで見たときは"sp"のclassがついた画像が表示される */
@media screen and (max-width: 767px) {
.pc { display: none!important; }
.sp { display: block!important; }
}


/* クリア　*/
.cb{
  clear: both;
}

/*オフィシャルパートナー*/

.flex-box{
	display: flex;
	flex-wrap:wrap;
	justify-content: center;
  align-items: center;
}
.flex-box li {
	width: calc(100%/8);/*←画像を横に4つ並べる場合*/
	padding:0 5px;/*←画像の左右に5pxの余白を入れる場合*/
	box-sizing:border-box;
	text-align: center;
}
.flex-box li img {
	max-width:100%; /*画像のはみだしを防ぐ*/
	height: auto; /*画像の縦横比を維持 */
  	vertical-align: center;
	/*border:solid 1px #ccc;*/ /*←画像を1pxのグレーの枠線で囲む指定の場合*/

}

@media screen and (max-width: 640px){

.flex-box li {
	width: calc(100%/4);/*←画像を横に4つ並べる場合*/
	padding:0 5px;/*←画像の左右に5pxの余白を入れる場合*/
	box-sizing:border-box;
	text-align: center;
}
}




/* トップ日程　*/
.flow_design06 {
  display: flex;
  justify-content: left;
  align-items: center;
}

.flow06 {
  padding-left: 0;
  overflow: hidden;
}

.flow06 > li {
  list-style-type: none;
  padding: 0 0 1.3em 2.3em;
  margin: 0;
  position: relative;
}

.flow06 > li .icon06 {
    font-size: 0.7em;
    display: block;
    color: #0070B7;
}

.flow06 > li .icon06::before {
  content: "";
  display: block;
  width: 12px;
  border-top: solid 3px #E0E0E0;
  position: absolute;
  top: 10px;
  left: 12px;
}

.flow06 > li::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  background: #E0E0E0;
  border-radius: 50%;
  position: absolute;
  top: 7px;
  left: 0;
}

.flow06 > li:not(:last-child)::after {
    content: "";
    display: block;
    height: 100%;
    border-left: 5px solid #B8B8B8;
    position: absolute;
    top: 20px;
    left: 3px;
}

.flow06 > li dl::after {
    content: "";
    width: 100%;
    display: block;
    border-bottom: 3px solid #E0E0E0;
    position: absolute;
    bottom: 22px;
    left: 21px;
}

.flow06 > li dl::before {
    content: "";
    height: calc(100% - 35px);
    display: block;
    border-left: solid 3px #E0E0E0;
    position: absolute;
    top: 10px;
    left: 21px;
}

.flow06 > li dl dt {
  font-size: 1.3em;
  font-weight: bold;
  margin-bottom: 10px;
}

.flow06 > li dl dd {
  margin-left: 0;
}

.bfontbl {
    color: #004F82;
    font-size: 110%!important;
    font-weight: bold;
}

/*トップ地図*/

.mapbt {
	margin-bottom: 20px;
}

.mapall {
    width: 100%;
    text-align: center;
    padding: 10px 0;
    margin-bottom: 10px;
    background-color: #222F94;
    color: #fff;
    font-size: 120%;
    line-height: 1.2em;
    }
.mapall a {
	text-decoration: none;
	color: aliceblue;
}

.mapallaward {
    width: 100%;
    text-align: center;
    padding: 10px 0;
    margin-bottom: 10px;
    background-color: #FF002F;
    color: #fff;
    font-size: 120%;
    line-height: 1.2em;
    }
.mapallaward a {
	text-decoration: none;
	color: aliceblue;
}
/* チーム写真と顧問・生徒名*/
@media (min-width: 640px) {
  .parent {
    display: flex;
  }
  .child1 {
    flex-grow: 1;
	  width: 40%;
	  margin: 10px;
  }
  .child2 {
    flex-grow: 1;
	  width: 50%;
	  margin: 10px;
  }
}
