@charset "utf-8";


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


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

/*全体の設定
---------------------------------------------------------------------------*/
body {
	margin: 0px;
	padding: 0px;
	color: #666;	/*全体の文字色*/
	font-family:"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;	/*フォント種類*/
	font-size: 15px;	/*文字サイズ*/
	line-height: 2;		/*行間*/
	background: #fff;	/*背景色*/
	-webkit-text-size-adjust: none;
}
h1,h2,h3,h4,h5,h6,h7,p,ul,ol,li,dl,dt,dd,form,figure,form,select,input,textarea {margin: 0px;padding: 0px;font-size: 100%;}
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%;}
video,audio {max-width: 100%;}

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

/*inner共通
---------------------------------------------------------------------------*/
.inner {
	max-width: 1300px;	/*サイトの最大幅*/
	margin: 0 auto;
	padding: 0 2%;		/*上下、左右へのボックス内の余白*/
}

/*ヘッダー（ロゴが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
	height: 100px;		/*高さ*/
	background: #fff;	/*背景色*/
}
/*ロゴ画像*/
header #logo {
	width: 220px;		/*ロゴ画像の幅*/
	float: left;		/*左に回り込み*/
	margin-top: 13px;	/*ロゴの上にあけるスペース。上下のバランスをここで調整して下さい。*/
	margin-left: 2%;	/*ロゴの左に空けるスペース。*/
}

/*ヘッダー右側の電話番号ブロック
---------------------------------------------------------------------------*/
/*ブロック全体*/
#contact {
	float: right;		/*右に回り込み*/
	text-align: center;	/*文字をセンタリング*/
	margin-top: 12px;	/*ブロックの上にあけるスペース。上下のバランスをここで調整して下さい。*/
	margin-right: 3%;	/*ブロックの右側に空けるスペース。*/
}
/*TEL*/
.tel {
	letter-spacing: 0.1em;	/*文字間隔を広くする設定。通常がいいならこの行削除。*/
	font-size: 24px;		/*文字サイズを大きく*/
}
/*TELの受付時間の小文字部分*/
.tel span {
	display: block;
	font-size: 11px;	/*文字サイズを小さく*/
}

/*メインメニュー
---------------------------------------------------------------------------*/
/*メニューブロック*/
#menubar {
	clear: both;overflow: hidden;
	background: #8ce366;	/*背景色（古いブラウザ用）*/
	background: linear-gradient(#a5db5e, #b1e691 49%, #8ce366 50%, #96d642);	/*背景グラデーション*/
	height: 75px;		/*メニューの高さ。下の「#menubar li a」の「height」と「padding-top」の数字を合計した数字に合わせる。*/
	border-top: 1px solid #8ce366;
	border-bottom: 1px solid #8ce366;
}
/*メニュー１個あたりの設定*/
#menubar li {
	float: left;	/*左に回り込み*/
	width: 16.66%;	/*メニュー幅（100÷6個=16.66%）　もし４個にするなら100÷4=25%になる。*/
}
#menubar li a {
	display:  block;text-decoration: none;
	text-align: center;	/*文字をセンタリング*/
	font-weight: bold;	/*太字に*/
	border-right: 1px solid #8ce366;	/*メニューの右側の線の幅、線種、色*/
	height: 60px;		/*高さ*/
	padding-top: 15px;	/*上に追加する余白*/
	line-height: 1.8;	/*行間を少し狭くする*/
	color: #fff;		/*文字色*/
	text-shadow: 0px -1px 1px #8ce366;	/*テキストの影。右へ、下へ(マイナスなので上に向かう)、広げる幅、色。*/
}
/*１つ目のメニューへの追加設定*/
#menubar li:first-child a {
	border-left: 1px solid #8ce366;		/*メニューの左側の線の幅、線種、色*/
}
/*装飾文字（英語表記）の設定*/
#menubar li a span {
	text-shadow: none;display: block;
	font-size: 9px;			/*文字サイズ*/
	font-weight: normal;	/*文字を太字でなく標準に戻す設定*/
	letter-spacing: 0.2em;	/*文字間隔を少しあける設定*/
}
/*マウスオン時と、現在表示中(current)のメニューの設定*/
#menubar li a:hover, #menubar li.current a {
	background: #69d459;	/*背景色（古いブラウザ用）*/
	background: linear-gradient(#dde4e7, #6acf4e 49%, #69d459 50%, #6acf4e);	/*背景グラデーション*/
}
/*スマホ用メニューを表示させない*/
#menubar-s {display: none;}
/*３本バーアイコンを表示させない*/
#menubar_hdr {display: none;}

/*fixmenu設定（メニューが画面上部に到達した際のスタイル）
---------------------------------------------------------------------------*/
/*上部固定メニュー用fixmenu設定*/
body.is-fixed-menu .nav-fix-pos {
	width: 100%;z-index: 100;position: fixed;top: 0;left: 0;
}
body.is-fixed-menu header {
	margin-bottom: 75px;	/*#menubarのheightの数字を指定する*/
}
/*上の設定の「is-fixed-menu」を「is-fixed」に変更したものをそのまま記入します。fixmenuスクリプトを２つ使う為に必要な設定になります。*/
body.is-fixed .nav-fix-pos {
	width: 100%;z-index: 100;position: fixed;top: 0;left: 0;
}
body.is-fixed header {
	margin-bottom: 75px;
}

/*contents（３カラムを囲むブロック）
---------------------------------------------------------------------------*/
#contents {
	clear: both;overflow: hidden;position: relative;z-index: 10;
	padding-top: 10px;		/*上に空けるボックス内の余白*/
	padding-bottom: 40px;	/*下に空けるボックス内の余白*/
}
/*トップページのコンテンツ。スライドショー分多めに余白を設定する。*/
.home #contents {
	margin-top: 2%;
}

/*contents-in（mainとsubを囲むブロック）
---------------------------------------------------------------------------*/
#contents-in {
	float: left;	/*左に回り込み*/
	width: 80%;		/*ブロックの幅*/
}
/*２カラム時*/
.c2 #contents-in {
	float: none;
	width: auto;
}

/*mainコンテンツ（中央のブロック）
---------------------------------------------------------------------------*/
#main {
	float: right;	/*右に回り込み*/
	width: 75%;		/*ブロックの幅*/
}
/*mainコンテンツのh2タグ設定*/
#main h2 {
	clear: both;
	margin-bottom: 20px;
	padding: 15px 20px;	/*上下、左右への余白*/
	font-size: 16px;	/*文字サイズ*/
	background: #8ce366 url(https://golfun2.dimps2.com/user_data/packages/default/images/bg1.png) no-repeat right bottom;	/*背景色と背景画像（古いブラウザ用）*/
	background: url(https://golfun2.dimps2.com/user_data/packages/default/images/bg1.png) no-repeat right bottom, linear-gradient(#dde4e7, #6acf4e 49%, #69d459 50%, #6acf4e);	/*背景グラデーション*/
	color: #fff;
	text-shadow: 0px -1px 1px #8ce366;	/*テキストの影。右へ、下へ(マイナスなので上に向かう)、広げる幅、色。*/
	border: 1px solid #8ce366;	/*枠線の幅、線種、色*/
}
/*mainコンテンツのh3タグ設定*/
#main h3 {
	clear: both;
	margin-bottom: 20px;
	padding: 6px 20px;			/*上下、左右への余白*/
	font-size: 16px;			/*文字サイズ*/
	border: 1px solid #666;		/*枠線の幅、線種、色*/
}
/*h3タグの１文字目への追加設定*/
#main h3::first-letter {
	border-left: 3px solid #8ce366;	/*左の線の幅、線種、色*/
	padding-left: 15px;				/*線とテキストとの余白*/
}
/*mainコンテンツのh5タグ設定*/
#main h5 {
	clear: both;
	padding: 5px 20px;	/*上下、左右への余白*/
	border-radius: 3px;
	font-size: 16px;	/*文字サイズ*/
	background: #8ce366;	/*背景色と背景画像（古いブラウザ用）*/
	background: linear-gradient(#dde4e7, #6acf4e 49%, #69d459 50%, #6acf4e);	/*背景グラデーション*/
	color: #fff;
	text-shadow: 0px -1px 1px #8ce366;	/*テキストの影。右へ、下へ(マイナスなので上に向かう)、広げる幅、色。*/
	border: 1px solid #8ce366;	/*枠線の幅、線種、色*/
}

#main h6 {
	clear: both;
	padding: 5px 20px;	/*上下、左右への余白*/
	border-radius: 3px;
	font-size: 16px;	/*文字サイズ*/
	background: #ff0000;	/*背景色と背景画像（古いブラウザ用）*/
	background: linear-gradient(#e8dfdf, #cf574c 49%, #d45b59 50%, #cf534c);	/*背景グラデーション*/
	color: #fff;
	text-shadow: 0px -1px 1px #ff0000;	/*テキストの影。右へ、下へ(マイナスなので上に向かう)、広げる幅、色。*/
	border: 1px solid #ff0000;	/*枠線の幅、線種、色*/
}

/*mainコンテンツの段落タグ設定*/
#main p {
	padding: 0px 20px 20px;	/*上、左右、下への余白*/
}
/*他。微調整。*/
#main p + p {
	margin-top: -5px;
}
#main h2 + p,
#main h3 + p {
	margin-top: -10px;
}
#main section + section {
	margin-top: 30px;
}

/*一覧ページの各ブロック
---------------------------------------------------------------------------*/
/*各ボックスの設定*/
#main .list_school {
	position: relative;overflow: hidden;
	margin-bottom: 20px;
	padding: 20px;		/*ボックス内の余白。ここを変更する際は、下の「.list a」のpaddingとmarginの数字も合わせる。marginの方はマイナス記号を忘れずに。*/
	border: 1px solid #dcdcdc;	/*枠線の幅、線種、色*/
	background-image: linear-gradient(#FFF, #e3e3e3);	/*グラデーション*/
	box-shadow: 0px 2px 5px #ccc, 0px 0px 0px 1px #fff inset;	/*影の設定。右へ・下へ・ぼかし幅・色の設定, ＋内側への影を右・下・ぼかし幅・距離・色を設定*/
}
#main .list_school a {
	text-decoration: none;display: block;overflow: hidden;
	padding: 20px;
	margin: 10px -20px 0 0;
}
/*マウスオン時の背景色*/
#main .list_school a:hover {
	background: #00000000; /*とりあえず透過にした*/
}
/*リンクを貼った際に出る「→」マーク*/
#main .list_school a::before {
	content: "→ 詳細を見る";	/*出力する文字。変更しても構いませんが機種依存文字は化けるので使わないで下さい。*/
	font-size: 14px;	/*文字サイズ*/
	display: block;
	position: absolute;
	right: 50px;	/*ボックスの右から10pxの場所に配置*/
	bottom: 10px;	/*ボックスの下から10pxの場所に配置*/
	width: 150px;	/*幅*/
	line-height: 30px;	/*高さ*/
	text-align: center;
	background: #51b508;	/*背景色（古いブラウザ用）*/
	/* background: rgba(0,0,0,0.2);	背景グラデーション。0,0,0は黒の事で、0.3は透明度30%の事。*/
	color: #fff;	/*文字色*/
	border-radius: 5%;	/*角丸のサイズ。50%にすると円になる。*/
}
/*マウスオン時の「→」マーク*/
#main .list_school a:hover::before {
	background: #51b508;	/*背景色*/
}
/*ボックス内のh4タグ設定*/
#main .list_school h4 {
	padding-left: 10px;	/*枠線とテキストとの間の余白*/
 	border-bottom: 1px solid #CCC;	/*下側の線の幅、線種、色*/
	border-left: 3px solid #51b508;	/*左側の線の幅、線種、色*/
	margin-bottom: 0.5em;
	color: #51b508;	/*文字色*/
}
/*ボックス内のp(段落)タグ設定*/
#main .list_school p {
	padding: 0px !important;
}
/*ボックス内の画像*/
#main .list_school figure {
	float: left;	/*左に回り込み*/
	width: 30%;
	background: #FFF;	/*画像の背景色。ここでは枠線と画像の間の色になります。*/
	padding: 1%;			/*余白。ここに上の行で設定した背景色が出ます。*/
	border: 1px solid #CCC;	/*枠線の幅、線種、色*/
	margin-right: 10px;
}
/*マウスオン時のボックス内の写真設定。ボックスにoption2スタイルが指定された場合の画像の設定。*/
.list_school.option2 a:hover figure img,
.list_school.option2 figure img {
	opacity: 0.3 !important;	/*半透明にする設定*/
}
/*登録日情報*/
#main .list_school .date {
	display: block;
	font-size: 11px;	/*文字サイズ*/
	color: #999;		/*文字色*/
	text-align: right;	/*テキストを右側に*/
}

/*一覧ページの各ボックス内のテーブル（※CMS用）
---------------------------------------------------------------------------*/
#main .list_school table {
	font-size: 12px;	/*文字サイズ*/
	width: 63%;			/*テーブル幅*/
	margin-bottom: 5px;
	background: #fff;	/*背景色*/
}
#main .list_school table,
#main .list_school table td,
#main .list_school table th{
	border: 1px solid #dcdcdc;	/*枠線の幅、線種、色*/
}
#main .list_school table td,
#main .list_school table th{
	padding: 1%;	/*テーブル内の余白*/
}
/*色のついた見出しブロック*/
#main .list_school table th{
	width: 20%;		/*幅*/
	text-align: center;		/*文字をセンタリング*/
	font-weight: normal;	/*デフォルトの太字を標準にする設定*/
	background: #edf0f5;	/*背景色*/
}
/*白い説明用ブロック*/
#main .list_school table td {
	width: 30%;	/*幅*/
}

/*個人レッスンページの各ブロック
---------------------------------------------------------------------------*/
/*各ボックスの設定*/
#main .list_private {
	position: relative;overflow: hidden;
	margin-bottom: 20px;
	padding: 20px;		/*ボックス内の余白。ここを変更する際は、下の「.list a」のpaddingとmarginの数字も合わせる。marginの方はマイナス記号を忘れずに。*/
	border: 1px solid #dcdcdc;	/*枠線の幅、線種、色*/
	background-image: linear-gradient(#FFF, #e3e3e3);	/*グラデーション*/
	box-shadow: 0px 2px 5px #ccc, 0px 0px 0px 1px #fff inset;	/*影の設定。右へ・下へ・ぼかし幅・色の設定, ＋内側への影を右・下・ぼかし幅・距離・色を設定*/
}
#main .list_private a {
	text-decoration: none;display: block;overflow: hidden;
	padding: 20px;
	margin: 10px -20px 0 0;
}
/*マウスオン時の背景色*/
#main .list_private a:hover {
	background: #00000000; /*とりあえず透過にした*/
}
/*ボックス内のh4タグ設定*/
#main .list_private h4 {
	padding-left: 10px;	/*枠線とテキストとの間の余白*/
 	border-bottom: 1px solid #CCC;	/*下側の線の幅、線種、色*/
	border-left: 3px solid #51b508;	/*左側の線の幅、線種、色*/
	margin-bottom: 0.5em;
	color: #51b508;	/*文字色*/
}
/*ボックス内のp(段落)タグ設定*/
#main .list_private p {
	padding: 0px !important;
}
/*ボックス内の画像*/
#main .list_private figure {
	float: left;	/*左に回り込み*/
	width: 30%;
	background: #FFF;	/*画像の背景色。ここでは枠線と画像の間の色になります。*/
	padding: 1%;			/*余白。ここに上の行で設定した背景色が出ます。*/
	border: 1px solid #CCC;	/*枠線の幅、線種、色*/
	margin-right: 10px;
}
/*ボックス内の画像*/
#main .list_private .block_body {
	float: left;	/*左に回り込み*/
	width: 30%;
	background: #FFF;	/*画像の背景色。ここでは枠線と画像の間の色になります。*/
	padding: 1%;			/*余白。ここに上の行で設定した背景色が出ます。*/
	border: 1px solid #CCC;	/*枠線の幅、線種、色*/
}

/*マウスオン時のボックス内の写真設定。ボックスにoption2スタイルが指定された場合の画像の設定。*/
.list_private.option2 a:hover figure img,
.list_private.option2 figure img {
	opacity: 0.3 !important;	/*半透明にする設定*/
}
/*登録日情報*/
#main .list_private .date {
	display: block;
	font-size: 11px;	/*文字サイズ*/
	color: #999;		/*文字色*/
	text-align: right;	/*テキストを右側に*/
}

/*一覧ページの各ボックス内のテーブル（※CMS用）
---------------------------------------------------------------------------*/
#main .list_private table {
	font-size: 12px;	/*文字サイズ*/
	width: 63%;			/*テーブル幅*/
	margin-bottom: 5px;
	background: #fff;	/*背景色*/
}
#main .list_private table,
#main .list_private table td,
#main .list_private table th{
	border: 1px solid #dcdcdc;	/*枠線の幅、線種、色*/
}
#main .list_private table td,
#main .list_private table th{
	padding: 1%;	/*テーブル内の余白*/
}
/*色のついた見出しブロック*/
#main .list_private table th{
	width: 20%;		/*幅*/
	text-align: center;		/*文字をセンタリング*/
	font-weight: normal;	/*デフォルトの太字を標準にする設定*/
	background: #edf0f5;	/*背景色*/
}
/*白い説明用ブロック*/
#main .list_private table td {
	width: 30%;	/*幅*/
}

/*個人レッスンページの各ブロック
---------------------------------------------------------------------------*/
/*各ボックスの設定*/
#main .list_calendar {
	position: relative;overflow: hidden;
	margin-bottom: 20px;
	padding: 20px;		/*ボックス内の余白。ここを変更する際は、下の「.list a」のpaddingとmarginの数字も合わせる。marginの方はマイナス記号を忘れずに。*/
	border: 1px solid #dcdcdc;	/*枠線の幅、線種、色*/
	background-image: linear-gradient(#FFF, #e3e3e3);	/*グラデーション*/
	box-shadow: 0px 2px 5px #ccc, 0px 0px 0px 1px #fff inset;	/*影の設定。右へ・下へ・ぼかし幅・色の設定, ＋内側への影を右・下・ぼかし幅・距離・色を設定*/
}
#main .list_calendar a {
	text-decoration: none;display: block;overflow: hidden;
}
/*マウスオン時の背景色*/
#main .list_calendar a:hover {
	background: #00000000; /*とりあえず透過にした*/
}
/*ボックス内のh4タグ設定*/
#main .list_calendar h4 {
	padding-left: 10px;	/*枠線とテキストとの間の余白*/
 	border-bottom: 1px solid #CCC;	/*下側の線の幅、線種、色*/
	border-left: 3px solid #51b508;	/*左側の線の幅、線種、色*/
	margin-bottom: 0.5em;
	color: #51b508;	/*文字色*/
}
/*ボックス内のp(段落)タグ設定*/
#main .list_calendar p {
	padding: 0px !important;
}
/*ボックス内の画像*/
#main .list_calendar figure {
	float: left;	/*左に回り込み*/
	width: 40%;
	background: #FFF;	/*画像の背景色。ここでは枠線と画像の間の色になります。*/
	padding: 1%;			/*余白。ここに上の行で設定した背景色が出ます。*/
	border: 1px solid #CCC;	/*枠線の幅、線種、色*/
}

/*一覧ページの各ボックス内のテーブル（※CMS用）
---------------------------------------------------------------------------*/
#main .list_calendar table {
	font-size: 12px;	/*文字サイズ*/
	width: 55%;			/*テーブル幅*/
	margin-bottom: 5px;
	background: #fff;	/*背景色*/
}
#main .list_calendar table,
#main .list_calendar table td,
#main .list_calendar table th{
	border: 1px solid #dcdcdc;	/*枠線の幅、線種、色*/
}
#main .list_calendar table td,
#main .list_calendar table th{
	padding: 1%;	/*テーブル内の余白*/
}
/*色のついた見出しブロック*/
#main .list_calendar table th{
	width: 20%;		/*幅*/
	text-align: center;		/*文字をセンタリング*/
	font-weight: normal;	/*デフォルトの太字を標準にする設定*/
	background: #edf0f5;	/*背景色*/
}
/*白い説明用ブロック*/
#main .list_calendar table td {
	text-align: center;
	width: 30%;	/*幅*/
}

/*一覧ページの各ブロック
---------------------------------------------------------------------------*/
/*各ボックスの設定*/
#main .list_prvpro {
	position: relative;overflow: hidden;
	margin-bottom: 20px;
	padding: 20px;		/*ボックス内の余白。ここを変更する際は、下の「.list a」のpaddingとmarginの数字も合わせる。marginの方はマイナス記号を忘れずに。*/
	border: 1px solid #dcdcdc;	/*枠線の幅、線種、色*/
	background-image: linear-gradient(#FFF, #e3e3e3);	/*グラデーション*/
	box-shadow: 0px 2px 5px #ccc, 0px 0px 0px 1px #fff inset;	/*影の設定。右へ・下へ・ぼかし幅・色の設定, ＋内側への影を右・下・ぼかし幅・距離・色を設定*/
}
#main .list_prvpro a {
	text-decoration: none;display: block;overflow: hidden;
	padding: 20px;
	margin: 10px -20px 0 0;
}
/*マウスオン時の背景色*/
#main .list_prvpro a:hover {
	background: #00000000; /*とりあえず透過にした*/
}

/*ボックス内のh4タグ設定*/
#main .list_prvpro h4 {
	padding-left: 10px;	/*枠線とテキストとの間の余白*/
 	border-bottom: 1px solid #CCC;	/*下側の線の幅、線種、色*/
	border-left: 3px solid #51b508;	/*左側の線の幅、線種、色*/
	margin-bottom: 0.5em;
	color: #51b508;	/*文字色*/
}
/*ボックス内のp(段落)タグ設定*/
#main .list_prvpro p {
	padding: 0px !important;
}

/*一覧ページの各ボックス内のテーブル（※CMS用）
---------------------------------------------------------------------------*/
#main .list_prvpro table {
	font-size: 12px;	/*文字サイズ*/
	width: 100%;			/*テーブル幅*/
	margin-bottom: 3px;
	background: #fff;	/*背景色*/
}
#main .list_prvpro table,
#main .list_prvpro table td,
#main .list_prvpro table th{
	border: 1px solid #dcdcdc;	/*枠線の幅、線種、色*/
}
#main .list_prvpro table td,
#main .list_prvpro table th{
	padding: 1%;	/*テーブル内の余白*/
}
/*色のついた見出しブロック*/
#main .list_prvpro table th{
	width: auto;		/*幅*/
	text-align: center;		/*文字をセンタリング*/
	font-weight: normal;	/*デフォルトの太字を標準にする設定*/
	background: #edf0f5;	/*背景色*/
}
/*白い説明用ブロック*/
#main .list_prvpro table td {
	width: auto;	/*幅*/
}

#main .container4 {
    position: relative }
#main .container4 a {
    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, -50%) }
	
/*listブロック（corse.html コース紹介ページで使っています）
---------------------------------------------------------------------------*/
/*ブロック１個あたりの設定*/
#main .list_guide {
	overflow: hidden;position: relative;
	border: 5px solid #20b0c5;	/*枠線の幅、線種、色*/
	border-radius: 10px;		/*角丸の指定。この１行を削除すれば通常の長方形になります。*/
	padding: 20px;				/*ブロック内の余白*/
	margin-bottom: 20px;		/*ブロック同士の余白。*/
}
#main .list_guide a {
	text-decoration: none;display: block;overflow: hidden;
	padding: 20px;	/*ブロック同士の余白。*/
	margin: -20px;	/*ブロック同士の余白。上のlistのpaddingの相殺用。*/
}
/*マウスオン時*/
#main .list_guide a:hover {
	background: #e9fcff;	/*背景色*/
}
/*h4見出しタグ設定*/
#main .list_guide h4 {
	color: #20b0c5;		/*文字色*/
	font-size: 22px;	/*文字サイズ*/
}
/*リンク設定がある場合のh4見出しタグの追加設定*/
#main .list_guide a h4::before {
	display: inline-block;text-align: center;
	content: "→";	/*このテキストを出力させます。変更しても構いませんが機種依存文字は化ける可能性があるので使わない。*/
	background: #20b0c5;	/*背景色*/
	color: #fff;			/*文字色*/
	width: 24px;			/*幅*/
	line-height: 24px;		/*高さ*/
	font-size: 12px;		/*文字サイズ*/
	border-radius: 50%;		/*円形にする指定*/
	margin-right: 5px;		/*右側のテキストとの間にとる余白*/
	position: relative;bottom: 3px;	/*位置の微調整*/
}
/*画像*/
#main .list_guide figure {
	float: left;	/*左に回り込み*/
	width: 30%;		/*幅*/
	margin-right: 20px;	/*右に空けるスペース*/
}
/*段落タグ*/
#main .list_guide p {
	padding: 0;
}	

/*Cast用の各ブロック
---------------------------------------------------------------------------*/
/*各キャストボックスの設定*/
.list {
	position: relative;overflow: hidden;
	float: left;			/*左に回り込み*/
	font-size: 11px;		/*文字サイズ*/
	line-height: 1.5;		/*行間*/
	width: 23%;				/*ボックスの幅*/
	margin-left: 1.5%;		/*ボックスの左右間に空けるスペース*/
	margin-bottom: 20px;	/*ボックスの上下間に空けるスペース*/
}
.list a {
	text-decoration: none;display: block;overflow: hidden;
	padding: 10px;	/*ボックス内の余白*/
	height: 220px;	/*高さ*/
	border: 1px solid #e6e8e6;	/*枠線の幅、線種、色*/
	box-shadow: 0px 0px 50px #e6e8e6 inset;	/*ボックスの影。右へ、下へ、広げる幅、色。insestは影を内側に向ける意味。*/
}
/*マウスオン時。内側の影を消す設定。*/
.list a:hover {
	box-shadow: none;
}
/*２カラム時のボックス幅*/
.c2 .list a {
	padding: 15px;	/*ボックス内の余白*/
	height: 240px;	/*高さ*/
}
/*ボックス内のp(段落)タグ設定*/
.list p {
	padding: 0px !important;
}
/*ボックス内のh4タグ設定*/
.list h4 {
	padding: 10px 0px 0px 0px;
	font-size: 13px;		/*文字サイズ*/
	color: #165c16;	/*文字色*/
}

/*Cast用の各ブロック
---------------------------------------------------------------------------*/
/*各キャストボックスの設定*/
.list_pro {
	position: relative;overflow: hidden;
	float: left;			/*左に回り込み*/
	font-size: 11px;		/*文字サイズ*/
	line-height: 1.5;		/*行間*/
	width: 22%;				/*ボックスの幅*/
	margin-left: 1.5%;		/*ボックスの左右間に空けるスペース*/
	margin-bottom: 20px;	/*ボックスの上下間に空けるスペース*/
	border: 1px solid #e6e8e6;	/*枠線の幅、線種、色*/
	box-shadow: 0px 0px 50px #e6e8e6 inset;	/*ボックスの影。右へ、下へ、広げる幅、色。insestは影を内側に向ける意味。*/
}

/*ボックス内のp(段落)タグ設定*/
.list_pro p {
	padding: 5px !important;
}
/*ボックス内のh4タグ設定*/
.list_pro h4 {
	padding: 10px 0px 0px 0px;
	font-size: 13px;		/*文字サイズ*/
	color: #165c16;	/*文字色*/
}

/*スタッフ詳細ページ　staff.html
---------------------------------------------------------------------------*/
#main .staff {
	position: relative;overflow: hidden;
	margin-bottom: 20px;
	padding: 20px;		/*ボックス内の余白。ここを変更する際は、下の「.list a」のpaddingとmarginの数字も合わせる。marginの方はマイナス記号を忘れずに。*/
	border: 1px solid #dcdcdc;	/*枠線の幅、線種、色*/
	background-image: linear-gradient(#FFF, #e3e3e3);	/*グラデーション*/
	box-shadow: 0px 2px 5px #ccc, 0px 0px 0px 1px #fff inset;	/*影の設定。右へ・下へ・ぼかし幅・色の設定, ＋内側への影を右・下・ぼかし幅・距離・色を設定*/
}

/*左側ボックス*/
#main .staff .left {
	float: left;	/*左に回り込み*/
	width: 35%;		/*幅*/
	padding-bottom: 15px;
}
/*左側ボックス内のp(段落)タグ*/
#main .staff .left p {
	padding: 0px;
}
/*右側ボックス*/
#main .staff .right {
	width: 60%;		/*幅*/
	float: right;	/*右に回り込み*/
	padding-bottom: 15px;
}
/*テーブルタグの左側の見出し（※幅以外は下の方にある「テーブル１」のスタイルで設定しています）*/

#main .staff .right .ta1 th {
	width: 100px;	/*幅*/
}

#main .staff .right .tabtn th {
	width: 100px;	/*幅*/
}

/*subコンテンツ（左側のブロック）
---------------------------------------------------------------------------*/
#sub {
	float: left;	/*左に回り込み*/
	width: 22.5%;	/*ブロックの幅*/
}

/*sideコンテンツ（右側のブロック）
---------------------------------------------------------------------------*/
#side {
	float: right;	/*右に回り込み*/
	width: 18%;		/*ブロックの幅*/
}
/*２カラム時*/
.c2 #side {
	display: none;	
}



/*sub,side共通設定
---------------------------------------------------------------------------*/
/*h2見出しタグ設定*/
#sub h2,
#side h2 {
	text-align: center;		/*文字をセンタリング*/
	padding: 10px;	/*見出し内の余白*/
	color: #fff;	/*文字色*/
	background: #8ce366;	/*背景色（古いブラウザ用）*/
	background: linear-gradient(#dde4e7, #6acf4e 49%, #69d459 50%, #6acf4e);	/*背景グラデーション*/
	text-shadow: 0px -1px 1px #8ce366;	/*テキストの影。右へ、下へ(マイナスなので上に向かう)、広げる幅、色。*/
	border: 1px solid #8ce366;	/*枠線の幅、線種、色*/
}
/*段落タグ（p）設定*/
#sub p,
#side p {
	line-height: 1.6;	/*行間を少し狭く*/
}

/*box1設定（sub,sideで使っています）
---------------------------------------------------------------------------*/
/*box1設定*/
#sub .box1,
#side .box1 {
	border: 1px solid #8ce366;	/*枠線の幅、線種、色*/
	padding: 10px;				/*ボックス内の余白*/
	margin-bottom: 20px;		/*ボックスの下にあけるスペース*/
	box-shadow: 0px 0px 50px #d8e0d7 inset;	/*ボックスの影。右へ、下へ、広げる幅、色。insestは影を内側に向ける意味。*/
}
/*box1の中にあるh2タグの設定*/
#sub .box1 h2,
#side .box1 h2 {
	border-radius: 0;	/*角丸をなくす設定*/
}
.box1 .submenu {
	margin-bottom: 0 !important;
}

/*submenu（sub,sideのメニュー）
---------------------------------------------------------------------------*/
/*メニューブロック全体の設定*/
#sub .submenu,
#side .submenu {
	margin-bottom: 20px;	/*メニューブロックの下にあけるスペース*/
	border-top: 1px solid #8ce366;	/*上の線の幅、線種、色*/
}
/*メニュー１個ごとの設定*/
#sub .submenu li a,
#side .submenu li a {
	text-decoration: none;display: block;
	padding: 3px 10px;	/*上下、左右のボックス内の余白*/
	border: 1px solid #8ce366;	/*枠線の幅、線種、色*/
	border-top: none;			/*上の線だけ消す設定*/
}

/* ===============================================
▼ログイン（サイド用）
※ヘッダー用はbloc_alpha.css内に記述
=============================================== */
#side .box1 .block_body {
    padding: 10px;
}

#side .box1 .block_body p {
    margin-bottom: 5px;
}

#side .box1 .block_body .btn {
    text-align: center;
}
#side .box1 dl.formlist {
    margin-bottom: 8px;
    width: 450px;
}
#side .box1 dl.formlist dt {
    margin-bottom: 3px;
    padding-left: 15px;
    color: #333;
    background: url("../img/icon/ico_arrow_03.gif") no-repeat left;
    width: 120px;
    float: left;
    font-size: 90%;
}
#side .box1 dd {
    margin-bottom: 5px;
    float: right;
    width: 300px;
    vertical-align: bottom;
    text-align: left;
}
#side .box1 .block_body .mini {
    margin-top: 5px;
    letter-spacing: -0.01em;
}

/*list-subボックス
---------------------------------------------------------------------------*/
/*ボックス１個あたりの設定*/
.list-sub {
	overflow: hidden;
	font-size: 11px;	/*文字サイズ*/
	line-height: 1.5;	/*行間*/
	border-bottom: 1px solid #ccc;	/*下線の幅、線種、色*/
}
.list-sub a {
	display: block;overflow: hidden;text-decoration: none;
	padding: 10px 0px;	/*上下、左右へのボックス内の余白*/
}
/*画像*/
.list-sub img {
	float: left;	/*左に回り込み*/
	width: 30%;		/*幅*/
	margin-right: 10px;	/*画像の右側に空けるスペース*/
}
/*最後のボックスへの追加設定*/
.list-sub:nth-last-of-type(1) {
	margin-bottom: 15px;	/*ボックスの下にあけるスペース*/
}

/*フッター設定
---------------------------------------------------------------------------*/
footer {
	clear: both;
	background: #8ce366;	/*背景色*/
	color: #fff;	/*文字色*/
	font-size: 85%;		/*文字サイズ*/
}
/*リンクテキストと、マウスオン時の文字色*/
footer a,footer a:hover {
	color: #fff;
}
footer .pr {display: block;font-size: 80%;}

/*フッターメニュー
---------------------------------------------------------------------------*/
/*ボックス全体*/
#footermenu {
	overflow: hidden;
	padding: 20px 0;	/*上下、左右へのボックス内の余白*/
	font-size: 12px;	/*文字サイズを少し小さく*/
}
/*１行分の設定*/
#footermenu ul {
	float: left;	/*左に回り込み*/
	width: 23%;		/*幅。今回は4列作ったのでここの幅23%と下のpadding(合計の2%)でトータル25%になるよう設定。列に応じて調整して下さい。*/
	padding-right: 1%;
	padding-left: 1%;
}
/*見出し*/
#footermenu li.title {
	font-weight: bold;	/*太字にする*/
}
/*リンクテキスト*/
#footermenu a {
	text-decoration: none;
	opacity: 0.7;	/*透明度。70%色がでた状態の事。*/
}
/*マウスオン時*/
#footermenu a:hover {
	opacity: 1;	/*透明度。100%色がでた状態の事。*/
}

/*コピーライト
---------------------------------------------------------------------------*/
#copyright {
	clear: both;
	text-align: center;
	background: #333;	/*背景色*/
}
#copyright a {text-decoration: none;}

/*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
/*ブロック全体の設定*/
#new dl {
	padding: 0px 20px 0px;	/*上、左右、下へのブロック内の余白*/
}
/*日付設定*/
#new dt {
	float: left;
	width: 9em;
	letter-spacing: 0.1em;
}
/*記事設定*/
#new dd {
	padding-left: 9em;
	border-bottom: 1px solid #ccc;	/*下線の幅、線種、色*/
}

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

/*schedule-table（CMS用）*/
.ta1.schedule-table th{
	width: auto;
}
.ta1.schedule-table td{
	width: 12%;
	text-align: center;
}

/*フォーム用テーブル
---------------------------------------------------------------------------*/
/*テーブル１行目に入った見出し部分（※caption）*/
.taf caption {
	border: 1px solid #999;	/*テーブルの枠線の幅、線種、色*/
	border-bottom: none;	/*下線だけ消す*/
	text-align: left;		/*文字を左寄せ*/
	font-weight: bold;		/*太字に*/
	padding: 10px;			/*ボックス内の余白*/
	background: #fff;
}
/*taf設定*/
.taf {
	table-layout: fixed;
	width: 100%;
	margin: 0 auto 20px;
}
.taf, .taf td, .taf th {
	word-break: break-all;
	border: 1px solid #999;	/*テーブルの枠線の幅、線種、色*/
	padding: 10px;	/*ボックス内の余白*/
}
/*tafの左側ボックス*/
.taf th {
	width: 140px;		/*幅*/
	font-size: 12px;
	background: #edf0f5;	/*背景色*/
	text-align: center;	/*センタリング*/
}
.taf td {
	background: #ffffff;	/*背景色*/
	font-size: 12px;		/*文字サイズ*/
}

/*schedule-table（CMS用）*/
.taf.schedule-table th{
	width: auto;
}
.taf.schedule-table td{
	width: 12%;
	text-align: center;
}
/*カレンダー用テーブル
---------------------------------------------------------------------------*/
/*テーブル１行目に入った見出し部分（※caption）*/
.tac caption {
	border: 1px solid #999;	/*テーブルの枠線の幅、線種、色*/
	border-bottom: none;	/*下線だけ消す*/
	text-align: center;		/*文字を左寄せ*/
	font-weight: bold;		/*太字に*/
	color: #ffffff;		/*しろ字に*/
	background: #000;
}
/*tac設定*/
.tac {
	table-layout: fixed;
	width: 100%;
	margin: 0 auto 10px;
}
.tac, .tac td, .tac th {
	word-break: break-all;
	border: 1px solid #999;	/*テーブルの枠線の幅、線種、色*/
	padding: 10px;	/*ボックス内の余白*/
}

/*schedule-table（CMS用）*/
.tac.schedule-table th{
	width: auto;
}
.tac.schedule-table td{
	width: 12%;
	text-align: center;
}

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

/*schedule-table（CMS用）*/
.tabtn.schedule-table th{
	width: auto;
}
.tabtn.schedule-table td{
	width: 12%;
	text-align: center;
}

/*フォーム関連
---------------------------------------------------------------------------*/
/*ボタン（btn）*/
input[type="submit"].btn,
input[type="button"].btn,
input[type="reset"].btn {
	padding: 5px 20px;		/*上下、左右へのボックス内の余白*/
	border-radius: 3px;		/*角丸のサイズ*/
	background: #8ce366;	/*背景色（古いブラウザ用）*/
	background: linear-gradient(#a6ed91, #8ce366);/*背景グラデーション*/
	color: #fff;	/*文字色*/
	border: 1px solid #8ce366;	/*枠線の幅、線種、色*/
}
/*マウスオン時のボタン（btn）設定*/
input[type="submit"].btn:hover,
input[type="button"].btn:hover,
input[type="reset"].btn:hover {
	background: #8fcded;	/*背景色*/
	color: #fff;		/*文字色*/
}
/*input,textarea共通*/
input,textarea {
	outline: none;
	background: transparent;
	border: 1px solid #ccc;	/*枠線の幅、線種、色*/
}
/*input,textareaのフォーカス時*/
input:focus,textarea:focus {
	border: 1px solid #666;	/*枠線の幅、線種、色*/
}

/*「人気」「NEW」マーク
---------------------------------------------------------------------------*/
/*mark1,matk2共通設定*/
.mark1, .mark2, .mark3 {
	display: inline-block;position: absolute;
	left: 5px;			/*ボックス内の左から5pxの場所に配置*/
	top: 5px;			/*ボックス内の上から5pxの場所に配置*/
	width: 40px;		/*幅*/
	line-height: 40px;	/*高さ*/
	font-size: 9px;		/*文字サイズ*/
	text-align: center;	/*文字をセンタリング*/
	color: #fff;		/*文字色*/
	border-radius: 50%;	/*角丸のサイズ*/
	transform: rotate(-30deg);	/*左回転で30度傾ける設定*/
	box-shadow: 1px 2px 4px rgba(0,0,0,0.6);	/*ボックスの影。右へ、下へ、広げる幅、0,0,0は黒の事で0.6は60%色がついた状態。*/
}
/*mark1の背景色*/
.mark1 {background: #df246f;}
/*mark2の背景色*/
.mark2 {background: #47cc1b;}
/*mark3の背景色*/
.mark3 {background: #47cc1b;}
/*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: 50px;		/*幅*/
	line-height: 50px;	/*高さ*/
	bottom: 50px;		/*下から50pxの場所に配置*/
	right: 3%;			/*右から3%の場所に配置*/
	color: #fff;		/*文字色*/
	background: #000;	/*背景色（古いブラウザ用）*/
	background: rgba(0,0,0,0.6);	/*背景色。0,0,0は黒の事で0.6は透明度60%の事。*/
	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;	/*背景色*/
}

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

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

/*トップページの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;
}

/*ドロップダウンメニュー用
----------------------------------------------------------------------------------------------------------------------------------*/
/*メニューブロック*/
#menubar ul.ddmenu {
	position:absolute;
	visibility: hidden;
	z-index: 100;
	padding-top: 1px;
	width: 20%;			/*幅。上の「#menubar li」と合わせる。*/
	font-size: 12px;	/*文字サイズ*/
}
/*メニュー１個あたりの設定*/
#menubar ul.ddmenu li {
	float: none;
	width: 100%;
}
#menubar ul.ddmenu li a {
	width: 100%;height: auto;font-weight: normal;
	border-bottom: 1px solid #fff;	/*下の線の幅、線種、色*/
	background: #000;	/*背景色（古いブラウザ用）*/
	background: rgba(0,0,0,0.7);	/*背景色。0,0,0は黒の事で0.7は70%色がついた状態の事。*/
	color: #fff;		/*文字色*/
	padding: 10px 0;	/*上下、左右への余白*/
}
/*マウスオン時*/
#menubar ul.ddmenu li a:hover {
	background: #000;	/*背景色*/
}


/*その他
---------------------------------------------------------------------------*/
.look {background: #333;padding: 5px 10px;border-radius: 4px;}
.mb10 {margin-bottom: 10px;}
.mb15,.mb1em {margin-bottom: 15px;}
.clear {clear: both;}
.color1, .color1 a {color: #8ce366;}
.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;}
img.fl {float: left;margin-right: 10px;margin-bottom: 10px;}
.big1 {font-size: 36px;letter-spacing: 0.2em;}
.mini1 {font-size: 11px;display: inline-block;line-height: 1.5;}
.sh {display: none;}
.border1 {border: 1px solid #666;}
.attention {color: #f00;}
.attentionSt {color: #f00; font-weight: bold;}
.st {font-weight: bold;}
.mini { font-size: 90%;}

.youtube {
	width: 100%;
	padding: 0;
	box-sizing: border-box;
}

.youtube .inner {
	padding-top: 56.25%;
	position: relative;
	height: 0;
	overflow: hidden;
}

.youtube .inner iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

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

/*Cast用の各ブロック
---------------------------------------------------------------------------*/
/*各キャストボックスの設定*/
.list a {
	height: 190px;	/*高さ*/
}
/*２カラム時のボックス幅*/
.c2 .list a {
	height: 210px;	/*高さ*/
}
}

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

/*ヘッダー右側の電話番号ブロック
---------------------------------------------------------------------------*/
/*ブロック全体*/
#contact {
	margin-right: 80px;		/*右に空けるスペース*/
}
/*TEL*/
.tel {
	letter-spacing: normal;	/*文字間隔を標準に戻す。*/
	font-size: 20px;		/*文字サイズ*/
}

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

/*３本バーアイコン設定
---------------------------------------------------------------------------*/
/*３本バーブロック*/
#menubar_hdr {
	display: block;
	position: absolute;
	top: 20px;	/*上から20pxの場所に配置*/
	right: 2%;	/*右から2%の場所に配置*/
}
/*アイコン共通設定*/
#menubar_hdr.close,
#menubar_hdr.open {
	width: 50px;	/*幅*/
	height: 50px;	/*高さ*/
}
/*三本バーアイコン*/
#menubar_hdr.close {
	background: url(https://golfun2.dimps2.com/user_data/packages/default/images/icon_menu.png) no-repeat center top/50px;
}
/*閉じるアイコン*/
#menubar_hdr.open {
	background: url(https://golfun2.dimps2.com/user_data/packages/default/images/icon_menu.png) no-repeat center bottom/50px;
}

/*fixmenu設定（メニューが画面上部に到達した際のスタイル）
---------------------------------------------------------------------------*/
/*fixmenuから折りたたみメニューになるのでリセット。*/
body.is-fixed-menu header,body.is-fixed header {margin-bottom: 0px;}

/*main,sub,side,contents-in
---------------------------------------------------------------------------*/
#main, #sub, #side, #contents-in {
	float: none;
	width: auto;
	clear: both;
}

/*contents（３カラムを囲むブロック）
---------------------------------------------------------------------------*/
#contents {
	padding-top: 0px;
}

/*list-subボックス
---------------------------------------------------------------------------*/
/*ボックス１個あたりの設定*/
.list-sub {
	font-size: 15px;	/*文字サイズ*/
	line-height: 2;	/*行間*/
}
/*画像*/
.list-sub img {
	width: 20%;		/*幅*/
}

/*テーブル
---------------------------------------------------------------------------*/
.ta-box {overflow-x: auto;}
.ta1 {overflow-x: auto;min-width: 800px;}

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

}



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

/*ヘッダー右側の電話番号ブロック
---------------------------------------------------------------------------*/
/*ブロック全体を消す*/
#contact {
	display: none;
}

/*Cast用の各ブロック
---------------------------------------------------------------------------*/
/*各キャストボックスの設定*/
.list {
	float: none;
	width: auto;
	margin-left: 0;
}
.list a {
	height: auto !important;
}
.list figure {
	float: left;
	width: 20%;
	margin-right: 10px;
}

/*listブロック（corse.html コース紹介ページで使っています）
---------------------------------------------------------------------------*/
/*ブロック１個あたりの設定*/
#main .list_guide {
	border: 3px solid #20b0c5;	/*枠線の幅、線種、色*/
	padding: 10px;				/*ブロック内の余白*/
}
#main .list_guide a {
	padding: 10px;	/*ブロック同士の余白。*/
	margin: -10px;	/*ブロック同士の余白。上のlistのpaddingの相殺用。*/
}
/*h4見出しタグ設定*/
#main .list_guide h4 {
	font-size: 18px;	/*文字サイズ*/
}
/*画像*/
#main .list_guide figure {
	margin-right: 10px;	/*右に空けるスペース*/
}

/*「人気」「NEW」マーク
---------------------------------------------------------------------------*/
/*mark1,matk2共通設定*/
.mark1, .mark2, .mark3 {
	left: auto;transform: rotate(0deg);
	top: -8px;		/*ボックス内の上から-8pxの場所に配置*/
	right: -5px;	/*ボックス内の右から-5pxの場所に配置*/
}

}



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

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

/*mainコンテンツ（中央のブロック）
---------------------------------------------------------------------------*/
/*mainコンテンツのh2,h3タグ設定*/
#main h2, #main h3 {
	font-size: 14px;	/*文字サイズ*/
}

/*スタッフ詳細ページ　staff.html
---------------------------------------------------------------------------*/
/*左側、右側ボックス*/
#main .staff .left, #main .staff .right {
	float: none;
	width: auto;
}
/*大きな写真の設定*/
#main .staff .left figure {
	display: block;margin: 0 auto;
	width: 70%;	/*幅を画面の70%幅に*/
}

/*submenu（sub,sideのメニュー）
---------------------------------------------------------------------------*/
/*メニュー１個ごとの設定*/
#sub .submenu li a,
#side .submenu li a {
	padding: 10px;	/*ボックス内の余白*/
}

/*list-subボックス
---------------------------------------------------------------------------*/
/*ボックス１個あたりの設定*/
.list-sub {
	font-size: 12px;	/*文字サイズ*/
	line-height: 1.5;	/*行間*/
}

/*フッターメニュー
---------------------------------------------------------------------------*/
/*ボックス全体*/
#footermenu {
	font-size: 10px;
}

/*テーブル(ta1)
---------------------------------------------------------------------------*/
/*余白の上書き*/
.ta1 caption,.ta1 th,.ta1 td {
	padding: 5px;
}
/*テーブル内の左側*/
.ta1 th {
	width: 100px;
}

/*テーブル(taf)
---------------------------------------------------------------------------*/
/*余白の上書き*/
.taf caption,.taf th,.taf td {
	padding: 15px;
}
/*テーブル内の左側*/
.taf th {
	width: 100px;
}

/*テーブル(tac)
---------------------------------------------------------------------------*/
/*余白の上書き*/
.tac caption,.tac th,.tac td {
	padding: 5px;
}
/*テーブル内の左側*/
.tac th {
	width: 100px;
}

/*その他
---------------------------------------------------------------------------*/
.ws,.wl {width: 94%;}
img.fr,img.fl {float: none;margin: 0;width: 100%;}

}



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

/*スタッフ詳細ページ　staff.html
---------------------------------------------------------------------------*/
/*テーブルタグの左側の見出し（※幅以外は下の方にある「テーブル１」のスタイルで設定しています）*/
#main .staff .right .ta1 th {
	width: 80px;	/*幅*/
}
/*テーブルタグの左側の見出し（※幅以外は下の方にある「テーブル１」のスタイルで設定しています）*/
#main .staff .right .taf th {
	width: 80px;	/*幅*/
}

}
