@charset "utf-8";


/*Google Fontsの読み込み
---------------------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Questrial&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Tangerine&display=swap');


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


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

/*全体の設定
---------------------------------------------------------------------------*/
body {
	margin: 0px;
	padding: 0px;
	color: #333;	/*全体の文字色*/
	font-family:"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;	/*フォント種類*/
	font-size: 16px;	/*文字サイズ*/
	line-height: 2;		/*行間*/
	background: #fafafa;	/*背景色*/
	-webkit-text-size-adjust: none;
}
h1,h2,h3,h4,h5,h6,p,p1,ul,ol,li,dl,dt,dd,form,figure,form {margin: 0px;padding: 0px;font-size: 100%;font-weight: normal;}
ul {list-style-type: none;}
ol {padding-left: 40px;padding-bottom: 15px;}
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: #333;		/*リンクテキストの色*/
	transition: 0.2s;	/*マウスオン時の移り変わるまでの時間設定。0.2秒。*/
}
a:hover {
	color: #ff0909;			/*マウスオン時の文字色*/
	text-decoration: none;	/*マウスオン時に下線を消す設定。残したいならこの１行削除。*/
}

/*inner
---------------------------------------------------------------------------*/
.inner {
	max-width: 1200px;	/*サイトの最大幅*/
	margin: 0 auto;
	padding-left: 0%;
	padding-right: 0%;
}

/*ヘッダー
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
	position: relative;
	z-index: 1;
	left: 0px;			/*左からの配置場所の指定*/
	top: 0px;			/*上からの配置場所の指定*/
	width: 100%;		/*幅*/
	background: #000000;	/*背景色*/
	font-size: 13px;	/*文字サイズ*/
	height: 120px;		/*ヘッダーの高さ*/
}
/*ロゴ画像*/
header #logo img {
	height: 120px;	/*高さ。上のheaderのheightと合わせる。*/
	float: left;	/*左に回り込み*/
	background: #0074ea;	/*背景色*/
}





/*ロゴ画像（トップページへの追加設定）*/
.home header #logo {
	display: none;	/*スライドショーの邪魔なので非表示に*/
}




/*メインメニューのブロック
---------------------------------------------------------------------------*/
/*メニューブロック*/
#menubar {
	position: relative;z-index: 10;
	text-align: center;	/*文字を中央に*/
	background: #fff;	/*背景色*/
	border-top: 1px solid #ccc;		/*上の線の幅、線種、色*/
	border-bottom: 1px solid #ccc;	/*下の線の幅、線種、色*/
	font-family: 'Questrial', sans-serif;	/*冒頭で読み込んだGoogle Fontsを適用する指定*/
	height: 105px;	/*高さ。「#menubar ul li a」や「fixmenu」とも連動するので変更の際は注意。説明はこの下の「#menubar ul li a」で書いています。*/

}
/*メニュー１個あたりの設定*/
#menubar ul li {
	float: left;	/*左に回り込み*/
	width: 20%;		/*幅。今回は５個なので、100÷5=20。*/
	font-size: 20px;	/*文字サイズ*/
}
#menubar ul li a {
	text-decoration: none;display: block;
	height: 85px;		/*メニューブロックの高さ。ここの「85」と、下の行の「20」を合計した「105」の数字と、上の「#menubar」の「height」および下のfixmenu設定に２箇所ある「margin-top」の数字を合わせて下さい。*/
	padding-top: 20px;	/*メニューブロックの高さプラス、上に空ける余白。メニューテキストの上下の配置バランスをここで調整して下さい。※変更の際は、上の行の注意書きもしっかり読んで下さい。*/
}
/*飾り文字*/
#menubar ul li span {
	display: block;
	font-size: 10px;	/*文字サイズ*/
	color: #999;		/*文字色*/
	letter-spacing: 0.2em;	/*文字間隔を少し広くとる設定*/
}
/*スマホ用メニューを表示させない*/
#menubar-s, #menubar-s2 {display: none;}

/*３本バーアイコンを表示させない*/
#menubar_hdr {display: none;}

/*ドロップダウンメニューの親メニュー*/
#menubar a.cursor-default {
	cursor: default;	/*マウスオーバー時に通常のカーソルになるように*/
	color: #333;		/*文字色*/
}

/*ドロップダウンメニュー用
---------------------------------*/
/*メニューブロック*/
#menubar ul.ddmenu {
	position:absolute;visibility: hidden;z-index: 10;
	left: 0px;
	width: 94%;
	padding: 50px 3%;
	background: #000;	/*背景色。古いブラウザ用。*/
	background: rgba(0,0,0,0.85);	/*背景色。0,0,0は黒のことで0.85は色が85%出た状態のこと。*/
	text-align: center;	/*テキストをセンタリング*/
	border-bottom: 1px solid #fff;	/*境界が見辛いので、下線の設定。*/
}
/*ドロップダウンメニューの出現アニメーション*/
#menubar li:hover ul.ddmenu {
	animation-name: opa1;		/*keyframes.cssで使う@keyframesの指定*/
	animation-fill-mode: both;
	animation-duration: 0.8S;	/*アニメーションを実行する時間。「s」は秒の事。*/
	animation-delay: 0.1s;		/*出現するタイミング（秒後）*/
}
/*メニュー１個あたりの設定*/
#menubar ul.ddmenu li {
	float: none;
	width: auto;
	display: inline-block;
	font-size: 85%;	/*文字サイズ*/
}
#menubar ul.ddmenu li a {
	height: auto;
	padding: 20px;	/*メニューテキスト同士の余白*/
	color: #fff;	/*文字色*/
	opacity: 0.7;	/*透明度。70%色がついた状態。*/
}
/*マウスオン時*/
#menubar ul.ddmenu li a:hover {
	opacity: 1;		/*透明度。色が100%出た状態。*/
}

/*fixmenu設定（メニューが画面上部に到達した際のスタイル）
---------------------------------------------------------------------------*/
/*上部固定メニュー用fixmenu設定*/
body.is-fixed-menu #menubar.nav-fix-pos {
	position: fixed;width: 100%;top: 0px;
	height: 60px;	/*メニューの高さを少し狭くする*/
}
body.is-fixed-menu #contents {
	margin-top: 105px;	/*※上の「#menubar ul li a」の注意書きにある数字を指定します。*/
}
/*※以下の２ブロックのスタイルの「中身」は、上の２ブロックのスタイルと単純に合わせておいて下さい。*/
body.is-fixed #menubar.nav-fix-pos {
	position: fixed;width: 100%;top: 0px;
}
body.is-fixed #contents {
	margin-top: 105px;	/*※上の「#menubar ul li a」の注意書きにある数字を指定します。*/
}

/*装飾文字を非表示にする*/
body.is-fixed-menu #menubar ul li span {
	display: none;
}
/*メニューテキストの上下バランスを調整しなおす。２つの数字の合計と、「body.is-fixed-menu #menubar.nav-fix-pos」の「height: 60px;」の数字が合うようにして下さい。*/
body.is-fixed-menu #menubar ul li a {
	height: 50px;
	padding-top: 10px;
}
/*ドロップダウンメニューへの再設定*/
body.is-fixed-menu #menubar ul.ddmenu li a {
	padding: 20px;
	height: auto;
}

/*コンテンツ
---------------------------------------------------------------------------*/
#contents {
	padding: 100px 0 20px;	/*上、左右、下へのコンテンツ内の余白*/
	position: relative;
	animation-name: opa2;	/*keyframes.cssで使う@keyframesの指定*/
	animation-duration: 0.5S;	/*アニメーションの実行時間*/
	animation-delay: 0.5s;		/*出現するタイミング（秒後）*/
	animation-fill-mode: both;
}
/*h2タグ*/
#contents h2 {
	clear: both;
	margin-bottom: 30px;
	font-size: 300%;	/*文字サイズ*/
	text-align: center;	/*文字をセンタリング*/
	letter-spacing: 0.2em;	/*文字間隔を少し広めにとる指定。通常がいいならこの１行削除。*/
}
/*h2タグ内のspanタグ（装飾文字）*/
#contents h2 span {
	display: block;
	font-size: 30%;	/*文字サイズ*/
	color: #999;		/*文字色*/
}
/*h3タグ*/
#contents h3 {
	clear: both;
	margin-bottom: 75px;
	font-size: 140%;	/*文字サイズ*/
	border-bottom: 1px solid #ccc;	/*下線の幅、線種、色*/
	padding-left: 2%;		/*左側に空ける余白*/
	letter-spacing: 0.1em;	/*文字間隔を少し広めにとる指定。通常がいいならこの１行削除。*/


}


/*h3タグ*/
#contents h6 {
	clear: both;
	margin-bottom: 20px;
	font-size: 140%;	/*文字サイズ*/
	border-bottom: 1px solid #ccc;	/*下線の幅、線種、色*/
	padding-left: 2%;		/*左側に空ける余白*/
	letter-spacing: 0.1em;	/*文字間隔を少し広めにとる指定。通常がいいならこの１行削除。*/


}







/*段落タグ*/
#contents p {
	padding: 0 3% 30px;	/*上、左右、下への余白*/
}
#contents h2 + p,
#contents h3 + p {
	margin-top: -5px;
}
#contents p + p {
	margin-top: -10px;
}
#contents section + section {
	margin-top: 100px;
}

#contents p1 {
	padding: 0 3% 10px;	/*上、左右、下への余白*/
}

/*list（worksページで使っている横長ブロック）
---------------------------------------------------------------------------*/
/*ボックスの設定*/
#contents .list {
	position: relative;
	border-radius: 5px;				/*角丸の指定。ほんの少し角が丸くなります。*/
	overflow: hidden;				/*角丸から内容が飛び出ないよう、飛び出た部分を非表示にする指定*/
	display: flex;
	align-items: center;			/*中のブロックの縦並びの揃え方*/
	background: #000;		/*背景色*/
	color: #fff;			/*文字色*/
	margin: 0 3% 30px;		/*ボックスの下に空けるスペース。上、左右、下への順番。*/
}
/*リンクテキストの文字色*/
#contents .list a {
	color: #fff;
}
/*ボックス内のh4（見出し）タグ*/
#contents .list h4 {
	margin-bottom: 20px;	/*下のテキストとの間に空けるスペース*/
	font-size: 140%;		/*文字サイズ*/
}
/*ボックス内のp（段落）タグ*/
#contents .list p {
	padding: 0;		/*余白のリセット*/
}
/*ボックス内のfigure画像*/
#contents .list figure {
	width: 40%;		/*画像の幅*/
        
}
/*「class="text"」を指定したブロック。テキストブロック。*/
#contents .list .text {
	width: 50%;		/*ブロックの幅。下のpaddingの5%とも連動するので変更の際は注意して下さい。*/
	padding: 2% 5%;	/*上下、左右へのブロック内の余白*/
}

/*偶数目のブロックの設定（画像とテキストブロックが左右交互に入れ替わる設定です。全部同じむきがよければこのブロックを削除します。）*/

#contents .list:nth-of-type(n+0) .text {
	order: 1;
}








/*装飾文字の設定（共通）*/
#contents .list::before {
	font-size: 10vw;
	line-height: 1;
	position: absolute;
	color: rgba(255,255,255,100);	/*文字色。255,255,255は白のことで、0.15は色が15%出た状態のこと。*/
	font-family: 'Tangerine', cursive;	/*冒頭で読み込んだGoogle Fontsを適用する指定*/
}
/*奇数番目のブロックの文字の配置場所指定*/
#contents .list:nth-of-type(odd)::before {
	left: 20px;
	top: 20px;
}
/*偶数番目のブロックの文字の配置場所指定*/
#contents .list:nth-of-type(even)::before {
	right: 10px;
	top: 20px;
}
/*１つ目ブロックに表示させるテキスト*/
#contents .list:nth-of-type(1)::before {
	content: "";

}



/*ボックス内のボタン（共通）*/
.btn1 a {
	display: block;
	text-decoration: none;
	border: 1px solid #fff;		/*枠線の幅、線種、色*/
	text-align: center;			/*テキストをセンタリング*/
	padding: 10px 33%;			/*上下、左右へのボタン内の余白*/
	margin: 20px auto 0;		/*上、左右、下へのボックスの外側への余白*/
       
}
/*ボタンのマウスオン時（共通）*/
.btn1 a:hover {
	background: #fff;	/*背景色*/
	color: #000 !important;		/*文字色*/
}






/*list-column（トップページで使っている３列ブロック）
---------------------------------------------------------------------------*/
/*カラムブロック全体を囲むボックス*/
#contents .list-column-container {
	display: flex;
	justify-content: space-between;	/*中のブロックの横並びの揃え方*/
	flex-wrap: wrap;				/*中のブロックを自動で折り返す*/
	margin: 0 3%;
}
/*１カラムあたりの設定*/
#contents .list-column {
	display: flex;
	flex-direction: column;			/*中のブロックを並べる向きの指定。これは縦に並べる意味。*/
	width: 33%;						/*ブロック幅*/
	margin-bottom: 20px;			/*ブロックの下に空ける余白*/
	background: #000;				/*背景色*/
	color: #fff;					/*文字色*/
	border-radius: 5px;				/*角丸の指定。ほんの少し角が丸くなります。*/
	overflow: hidden;				/*角丸から内容が飛び出ないよう、飛び出た部分を非表示にする指定*/
}
/*リンクテキストの文字色*/
#contents .list-column a {
	color: #fff;
}
/*ボックス内のh4（見出し）タグ*/
#contents .list-column h4 {
	margin-bottom: 20px;	/*下のテキストとの間に空けるスペース*/
	font-size: 140%;		/*文字サイズ*/
}
/*ボックス内のp（段落）タグ*/
#contents .list-column p {
	padding: 0;		/*余白のリセット*/
}

/*「class="text"」を指定したブロック。テキストブロック。*/
#contents .list-column .text {
	padding: 3%;			/*ブロック内の余白*/
	flex: 1 0 auto;
}
/*IEバグ対応*/
#contents .list-column figure {
	min-height: 0%;
}

/*フッター設定
---------------------------------------------------------------------------*/
footer {
	clear: both;position: relative;z-index: 1;
	font-size: 80%;	/*文字サイズ*/
	background: #000;	/*背景色*/
	color: #ccc;		/*文字色*/
	text-align: center;
}
footer a {color: #ccc;}
footer a:hover {color: #fff;}
footer .pr {display: block;font-size: 80%;}

/*フッターメニュー
---------------------------------------------------------------------------*/
/*ボックス全体*/
#footermenu {
	overflow: hidden;
	padding: 50px 0;	/*上下、左右へのボックス内の余白*/
	background: url(../images/footer_logo.png) no-repeat right center / 20%;	/*背景画像の読み込み。*/
}
/*リンクテキスト*/
#footermenu li a {
	text-decoration: none;
	opacity: 0.7;	/*透明度。70%の色がついた状態。*/
}
/*マウスオン時*/
#footermenu li a:hover {
	opacity: 1;		/*透明度。100%色がついた状態。*/
}
/*１行分の設定*/
#footermenu ul {
	float: left;	/*左に回り込み*/
	width: 18%;		/*幅*/
	padding-right: 1%;
	padding-left: 1%;
	text-align: left;
}
/*見出し*/
#footermenu li.title, #footermenu li.title a {
	opacity: 1;	/*透明度。100%色がついた状態。*/
}

/*コピーライト
---------------------------------------------------------------------------*/
#copyright {
	clear: both;
	text-align: center;
	background: #000;	/*背景色*/
	padding: 20px 0;	/*上下、左右へのボックス内の余白*/
}
#copyright a {text-decoration: none;}

/*facebookやtwitterなどのアイコン
---------------------------------------------------------------------------*/
/*アイコン全体を囲むブロック*/
ul.icon {
	margin-bottom: 10px;
        margin-top: 10px;
}
/*アイコン１個あたりの設定*/
ul.icon li {
	display: inline-block;	/*横並びにさせる指定*/
}
/*アイコン画像の設定*/
ul.icon img {
	width: 40px;		/*画像の幅*/
}
ul.icon img:hover {
	opacity: 0.8;
}

/*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
/*見出しを含まないお知らせブロック*/
#new dl {
	padding: 0px 20px;		/*上下、左右へのブロック内の余白*/
}
/*日付設定*/
#new dt {
	float: left;
	width: 9em;		/*幅*/
	letter-spacing: 0.1em;
}
/*記事設定*/
#new dd {
	padding-left: 9em;
}

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

/*inputボタン
---------------------------------------------------------------------------*/
#contents input[type="submit"].btn,
#contents input[type="button"].btn,
#contents input[type="reset"].btn {
	-webkit-appearance: none;
	outline: none;
	padding: 5px 20px;		/*上下、左右へのボックス内の余白*/
	border: 1px solid #333;	/*枠線の幅、線種、色*/
	font-size: 130%;		/*文字サイズ*/
	border-radius: 3px;		/*角丸のサイズ*/
	background: #333;		/*背景色*/
	color: #fff;			/*文字色*/
}
/*マウスオン時の設定*/
#contents input[type="submit"].btn:hover,
#contents input[type="button"].btn:hover,
#contents input[type="reset"].btn:hover {
	border: 1px solid #333;	/*枠線の幅、線種、色*/
	background: #fff;		/*背景色*/
	color: #333;			/*文字色*/
}

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

/*ヘッダーにメニューが固定される分、リンク先が隠れるのを防ぐ為のスタイル。※ページ内へのリンクで使う。
---------------------------------------------------------------------------*/
.link {
	display: block;
	margin-top: -120px;
	padding-top: 120px;
}

/*PAGE TOP（↑）設定
---------------------------------------------------------------------------*/
/*通常時のボタンは非表示*/
body .nav-fix-pos-pagetop a {display: none;}
/*fixmenu_pagetop.jsで設定している設定値になったら出現するボタンスタイル*/
body.is-fixed-pagetop .nav-fix-pos-pagetop a {
	display: block;text-decoration: none;text-align: center;
	width: 50px;		/*幅*/
	line-height: 50px;	/*高さ*/
	z-index: 1;
	position: fixed;
	bottom: 20px;	/*下から20pxの場所に配置*/
	right: 3%;		/*右から3%の場所に配置*/
	background: #666;	/*背景色（古いブラウザ用）*/
	background: rgba(0,0,0,0.6);	/*背景色。0,0,0は黒の事。0.6は60%色がついた状態。*/
	color: #fff;	/*文字色*/
	border: 1px solid #fff;	/*枠線の幅、線種、色*/
	animation-name: opa1;	/*keyframes.cssで使う@keyframesの指定*/
	animation-duration: 1S;	/*アニメーションの実行時間*/
	animation-fill-mode: both;	/*アニメーションの待機中は最初のキーフレームを維持、終了後は最後のキーフレームを維持。*/
}
/*マウスオン時*/
body.is-fixed-pagetop .nav-fix-pos-pagetop a:hover {
	background: #999;	/*背景色*/
}

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

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



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

/*全体の設定
---------------------------------------------------------------------------*/
body {
	font-size: 2vw;	/*文字サイズ*/
}

/*ヘッダー
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
	border-bottom: 1px solid #ccc;
}
/*ヘッダーブロック（トップページへの追加設定）*/
.home header {
	border: none;
}

/*メインメニュー
---------------------------------------------------------------------------*/
/*スマホ用メニューブロック全体*/
#menubar-s {
	overflow: auto;height: 100%;
	position: fixed;z-index: 100;
	top: 0px;
	width: 100%;
	background: rgba(0,0,0,0.8);	/*背景色*/
	border-top: 1px solid #fff;		/*上の線の幅、線種、色*/
	animation-name: frame1;		/*冒頭のkeyframesの名前*/
	animation-duration: 0.5s;	/*アニメーションの実行時間。0.5秒。*/
	animation-fill-mode: both;	/*待機中は最初のキーフレームを、完了後は最後のキーフレームを維持*/
	font-size: 16px;			/*文字サイズ*/
}
#menubar-s li span {
	margin-left: 20px;
	font-size: 80%;
}
/*メニュー１個あたりの設定と、子メニューの見出し。*/
#menubar-s ul li a,#menubar_hdr2 {
	display: block;text-decoration: none;
	padding: 30px 20px 30px 60px;
	border-bottom: 1px solid #fff;	/*下の線の幅、線種、色*/
	color: #fff;		/*文字色*/
}
/*PC用メニューを非表示にする*/
#menubar {display: none;}

/*子メニュー
---------------------------------------------------------------------------*/
/*子メニューの見出しの追加。基本は上のブロックで設定しています。*/
#menubar_hdr2 {
	padding-left: 60px;	/*上にある「メニュー１個あたりの設定と、子メニューの見出し」の最後の数字（４つ目）に合わせる。*/
}
/*子メニューメニューブロック全体*/
#menubar-s2 {
	display: block;
	margin-top: 10px;
	border-radius: 5px;
	background: rgba(0,0,0,0.3);
	border: 1px solid #fff;
}
/*「＞」アイコン設定*/
#menubar_hdr2.close {
	background: url(../images/arrow2.png) no-repeat 20px 35px / 18px;
}
/*「＾」アイコン設定*/
#menubar_hdr2.open {
	background: url(../images/arrow3.png) no-repeat 20px 35px / auto 18px;
}
/*子メニュー１個あたりの設定*/
#menubar-s2 li a {
	border-bottom: 1px solid #fff !important;
	padding: 10px 20px !important;
}
#menubar-s2 li:last-child a {
	border-bottom: none !important;
}

/*３本バーアイコン設定
---------------------------------------------------------------------------*/
/*３本バーブロック*/
#menubar_hdr {
	display: block;
	position: fixed;z-index: 100;
	top: 20px;		/*上からの配置場所*/
	right: 2%;	/*右からの配置場所*/
}
/*アイコン共通設定*/
#menubar_hdr.close,
#menubar_hdr.open {
	width: 50px;	/*幅*/
	height: 50px;	/*高さ*/
	border: 1px solid #fff;
}
/*三本バーアイコン*/
#menubar_hdr.close {
	background: #000 url(../images/icon_menu.png) no-repeat center top/50px;	/*背景色、背景画像の読み込み、画像の上半分（３本マーク）を表示。幅は50px。*/
}
/*閉じるアイコン*/
#menubar_hdr.open {
	background: #000 url(../images/icon_menu.png) no-repeat center bottom/50px;	/*背景色、背景画像の読み込み、画像の下半分（×マーク）を表示。幅は50px。*/
}

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

/*コンテンツ
---------------------------------------------------------------------------*/
#contents {
	padding: 50px 0;	/*上下、左右へのコンテンツ内の余白*/
}
/*h2タグ*/
#contents h2 {
	margin-bottom: 25px;
}

/*list-column（トップページで使っている３列ブロック）
---------------------------------------------------------------------------*/
/*ボックス内のh4（見出し）タグ*/
#contents .list-column h4 {
	margin-bottom: 0px;
}

/*ヘッダーメニューが固定されなくなるので、再設定。
---------------------------------------------------------------------------*/
.link {
	margin-top: -30px;
	padding-top: 30px;
}

/*その他
---------------------------------------------------------------------------*/
body.s-n .sub,body.s-n #footermenu {display: none;}
.big1 {font-size: 20px;}

}



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

/*全体の設定
---------------------------------------------------------------------------*/
body {
	font-size: 3vw;
}

/*コンテンツ
---------------------------------------------------------------------------*/
/*h2タグ*/
#contents h2 {
	margin-bottom: 15px;
}
/*h3タグ*/
#contents h3 {
	margin-bottom: 50px;
}

/*h3タグ*/
#contents h6 {
	margin-bottom: 20px;
}

#contents section + section {
	margin-top: 30px;
}

/*list（worksページで使っている横長ブロック）
---------------------------------------------------------------------------*/
/*ボックス内のボタン（共通）*/
.btn1 a {
	padding: 5px 10px;			/*上下、左右へのボタン内の余白*/
}

/*テーブル（ta1）
---------------------------------------------------------------------------*/
/*ta1設定*/
.ta1, .ta1 td, .ta1 th {
	padding: 5px;	/*ボックス内の余白*/
}
/*ta1の左側ボックス*/
.ta1 th {
	width: 100px;
}

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

}
 


.contents {
     width: 100%;
     max-width: 1200px;
     margin: auto;
 }
 .contents img {
     width: 100%;
 }
 .text-center {
     text-align: center;
 }
 .flexbox {
     display: flex;
 }
 .box1 {
     width: 55%;
     margin: auto;
 }
 .box2 {
     width: 45%;
     margin: auto ;
 }
 @media screen and (max-width: 767px) {
     .flexbox {
         display: block;
     }
     .flexbox .box1 {
         width: 100%;
         margin: 0 auto;
     }
     .flexbox .box2 {
         width: 100%;
         margin: 0 auto;
     }
 }

/*フッター付近のテーブル　
---------------------------------------------------------------------------*/

table.company {
width: 400px;
margin: 0 auto;
border-collapse: separate;
border-spacing: 0px 3px;
font-size: 15px;
}

table.company th,
table.company td {
padding: 10px;
}

table.company th {
background: #000000;
vertical-align: middle;
text-align: left;
width: 20%;
overflow: visible;
position: relative;
color: #FFFFFF;
font-weight: normal;
font-size: 15px;
}

table.company th:after {
left: 100%;
top: 50%;
border: solid transparent;
content: " ";
height: 0;
width: 0;
position: absolute;
pointer-events: none;
border-color: rgba(136, 183, 213, 0);
border-left-color: #000000;
border-width: 10px;
margin-top: -10px;
}
/* firefox */
@-moz-document url-prefix() {
table.company th::after {
float: right;
padding: 0;
left: 30px;
top: 10px;
content: " ";
height: 0;
width: 0;
position: relative;
pointer-events: none;
border: 10px solid transparent;
border-left: #0000FF 10px solid;
margin-top: -10px;
}
}

table.company td {
background: #F5F5F5;
width: 80%;
padding-left: 20px;
color: #000000;
}



/*入会申し込みページ
---------------------------------------------------------------------------*/
table.ttt {
width: 100%;
margin: 0 auto;
border-collapse: separate;
border-spacing: 0px 3px;
font-size: 15px;
}

table.ttt th,
table.ttt td {
padding: 10px;
}

table.ttt th {
background: #000000;
vertical-align: middle;
text-align: left;
width: 30%;
overflow: visible;
position: relative;
color: #FFFFFF;
font-weight: normal;
font-size: 15px;
}

table.ttt th:after {
left: 100%;
top: 50%;
border: solid transparent;
content: " ";
height: 0;
width: 0;
position: absolute;
pointer-events: none;
border-color: rgba(136, 183, 213, 0);
border-left-color: #000000;
border-width: 10px;
margin-top: -10px;
}
/* firefox */
@-moz-document url-prefix() {
table.ttt th::after {
float: right;
padding: 0;
left: 30px;
top: 10px;
content: " ";
height: 0;
width: 0;
position: relative;
pointer-events: none;
border: 10px solid transparent;
border-left: #000000 10px solid;
margin-top: -10px;
}
}

table.ttt td {
background: #F5F5F5;
width: 70%;
padding-left: 20px;
color: #000000;
}



/*料金表
---------------------------------------------------------------------------*/
table.plan{
  width: 100%;
  border-collapse:separate;
  border-spacing: 0;
}

table.plan th:first-child{
  border-radius: 5px 0 0 0;
}

table.plan th:last-child{
  border-radius: 0 5px 0 0;
  border-right: 1px solid #000000;
}

table.plan th{
  text-align: center;
  color:white;
  background: #000000;
  border-left: 1px solid #3c6690;
  border-top: 1px solid #3c6690;
  border-bottom: 1px solid #3c6690;
  box-shadow: 0px 1px 1px rgba(255,255,255,0.3) inset;
  width: 20%;
  padding: 10px 0;
}

table.plan td{
  text-align: center;
  border-left: 1px solid #a8b7c5;
  border-bottom: 1px solid #a8b7c5;
  border-top:none;
  box-shadow: 0px -3px 5px 1px #eee inset;
  width: 20%;
  padding: 10px 0;
}

table.plan td:last-child{
  border-right: 1px solid #a8b7c5;
}

table.plan tr:last-child td:first-child {
  border-radius: 0 0 0 5px;
}

table.plan tr:last-child td:last-child {
  border-radius: 0 0 5px 0;
}

/*申し込み・規約　のテーブル
---------------------------------------------------------------------------*/
table.kiyaku {
  border-collapse: collapse;
　margin: auto;
}
table.kiyaku th, table td {
 border-color : #fafafa;
  /*実線 1px 黒*/
}
/*余白と文字装飾は省略*/






/*表示について
---------------------------------------------------------------------------*/
/*-- PC版表示CSS  --*/
pc_area{
  display:block;
}
phone_area{
  display:none;
}






/*ヘッダー画像用
---------------------------------------------------------------------------*/
.clearfix::after {
   content: "";
   display: block;
   clear: both;
}

.green{
  background-color: #000000;
  width: 380px;
  height: 100px;
  float: left;
}
.yellow{
  background-color: #000000;
  width: 300px;
  height: 100px;
  float: right;
}
.red{
  background-color: red;
  width: 300px;
  height: 100px;
  float: right;
}


/*表示切替
---------------------------------------------------------------------------*/

.animal {
	max-width: 1200px;
	width: 100%;
}
.animal img {
	width: 100%;
}
 
 
.pcview {
}
.spview {
	display: none;
}
 
@media screen and (max-width: 979px) {
	.pcview {
		display: none;
	}
	.spview {
		display: block;
	}
}




/*表　スクロール
---------------------------------------------------------------------------*/

@media screen and (max-width: 640px) {
  .scroll {
    overflow-x: auto;
  }
  .tbl-r07 {
    min-width: 640px;
    margin: 0 10px 50px;
  }
  .tbl-r07 td {
    border-top: solid 1px #ccc;
    border-bottom: solid 1px #ccc;
  }
}


/*改行
---------------------------------------------------------------------------*/

/*PCで無効*/
.pc_hid{
    display: none;
}

/*スマートフォンで有効*/
@media screen and (max-width:768px) {
    .pc_hid{
        display: block;
    }
}



/*選手テスト
---------------------------------------------------------------------------*/


table.voo {
  border-collapse:separate;
  border-spacing: 0px;
  margin: 0 auto;
  padding: 0;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}



table.voo th{
  border-bottom: solid 2px #fb5144;
  padding: 10px 0;
  text-align: left;
  width: 35%;
  font-size: 13px;
}

table.voo td{
  border-bottom: solid 2px #ddd;
  text-align: center;
  padding: 10px 0;
   font-size: 13px;
}


/*改行
---------------------------------------------------------------------------*/

@media screen and (max-width:640px) {
	.pc {
		display: none;
	}
}
@media screen and (min-width:641px) {
	.sp {
		display: none;
	}
}



/*選手プロフィール
---------------------------------------------------------------------------*/
/* BASE CSS */
* {
	list-style: none;
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}
img {
	width: 100%;
	vertical-align: bottom;
}
/* ここからカードレイアウトのスタイリング */
/* PC　3カラム */
.bl_media_container {
	display: flex;
	flex-wrap: wrap;
	margin: calc(-30px / 2);
	padding: 30px;
}
.bl_media_itemWrapper {
	width: calc(100% / 3 - 30px);
	margin: calc(30px / 2);
}
.bl_media_item {
	outline: 1px solid #000;
	font-size: 1.5vw;
}
/* タブレット　2カラム */
@media screen and (max-width: 1024px) {
	.bl_media_itemWrapper {
		width: calc(100% / 2 - 30px);
	}
}
/* スマホ 1カラム*/
@media screen and (max-width: 599px) {
	.bl_media_itemWrapper {
		width: calc(100% / 1 - 30px);
	}
}


.stretched-link::after{
  position:absolute;top:0;right:0;bottom:0;left:0;z-index:1;pointer-events:auto;content:"";background-color:rgba(0,0,0,0)
}




/*選手プロフィール?
---------------------------------------------------------------------------*/
.card-body {
 -ms-flex: 1 1 auto;
 flex: 1 1 auto;
 padding: 1.25rem;
}

.card-title {
  margin-bottom: 0.75rem;
}


.card-subtitle {
 margin-top: -0.375rem;
 margin-bottom: 0;
}

.card-text:last-child {
 margin-bottom: 0;
}


.card {
 position: relative;
 display: -ms-flexbox;
 display: flex;
 -ms-flex-direction: column;
 flex-direction: column;
 min-width: 0;
 word-wrap: break-word;
 background-color: #fff;
 background-clip: border-box;
 border: 1px solid rgba(0, 0, 0, 0.125);
 border-radius: 0.25rem;
}


/*選手プロフィール3
---------------------------------------------------------------------------*/

.card-box-wrap{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap;
  padding: 2% 5%;
}
.card-box{
  display: flex;
  width: calc(33.3% - 20px);
  flex-direction: column;
  justify-content: center;
  margin-right: 20px;
  align-items:center;
  padding: 0px;
  border:solid 1px #ccc;
  border-radius: 8px;
  margin-bottom: 24px;
  position: relative;
  cursor: pointer;
  box-shadow: 0 5px 10px -5px #ccc;
  transition: ease-in-out .2s
　background-color: #f3f3f3;
}
.card-box:hover{
  opacity: .7;
  transform: translateY(-4px);
  box-shadow: 0px 5px 15px 0px #ccc,0 0 2px 2px #ddd;
}
.card-box:nth-of-type(3n){
  margin-right: 0;
}
.card-box img{
  width: 100%;
}
.card-text{
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-top: 12px;
  margin-bottom: 24px;
}
.card-text h2{
  margin-bottom: 12px;
}
.card-box time{
 position: absolute;
 bottom: 1%;
 left: 2%;
}
@media screen and (max-width:768px){
  .card-text p{
    display: none;
  }
  .card-text h2{
    margin-bottom: 0;
  }
}



@media screen and (max-width:500px){
 
.card-box{
margin:0 20px 20px 0;
width: calc(50% - 20px / 2);
}
 
.card-box:nth-child(2n){
margin-right:0;
}
 
.card-box:nth-child(3n){
margin-right:20px;
}
 
.card-box:nth-child(6){
margin-right:0;
}
 
}




/*index カラム
---------------------------------------------------------------------------*/


.card-box-wrap1{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap;
  padding: 2% 5%;
}
.card-box1{
  display: flex;
  width: calc(33.3% - 20px);
  flex-direction: column;
  justify-content: center;
  margin-right: 20px;
  align-items:center;
  padding: 0px;
  border:solid 1px #ccc;
  border-radius: 8px;
  margin-bottom: 24px;
  position: relative;
  cursor: pointer;
  box-shadow: 0 5px 10px -5px #ccc;
  transition: ease-in-out .2s
}
.card-box1:hover{
  opacity: .7;
  transform: translateY(-4px);
  box-shadow: 0px 5px 15px 0px #ccc,0 0 2px 2px #ddd;
}
.card-box1:nth-of-type(3n){
  margin-right: 0;
}
.card-box1 img{
  width: 100%;
}
.card-text1{
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-top: 12px;
  margin-bottom: 24px;
}
.card-text1 h2{
  margin-bottom: 12px;
}
.card-box1 time{
 position: absolute;
 bottom: 2%;
 left: 2%;
}
@media screen and (max-width:768px){
  .card-text1 p{
    display: none;
  }
  .card-text1 h2{
    margin-bottom: 0;
  }
}
@media screen and (max-width: 480px) {
  .card-box-wrap1{
    flex-direction1: column;
    flex-wrap1: nowrap;
  }
  .card-box1{
    width: 100%;
    flex-direction: column;
    margin-right: 0;
  }
  .card-text1 h2{
    font-size: 1.2rem;
  }
  .card-text1 p{
    display: none;
  }
  .card-box1 time{
    font-size: 0.9rem;
    left: 2%;
  }
  .card-text1 h2{
    margin-bottom: 0;
  }
}


/* ▼タブのように見せるCSS */
.kadomaru {
   border-top-left-radius: 7px;  /* 左上だけの角丸半径 */
   border-top-right-radius: 7px; /* 右上だけの角丸半径 */
   border: ;       /* 枠線の装飾 */
   background-color: ;     /* 背景色 */
   padding: ;  /* 内側の余白 */
   display: inline-block;         /* インラインブロック化(※インラインのままだと、右端で折り返されて上下に並んだときに、前後の行と重なってしまうため) */

}


/フッター
---------------------------------------------------------------------------*/
#footer05 {ｆ
  position: relative;
}
 
#footer05 .main .left {
  background: url(../base/footer.jpg) no-repeat center / cover;
  padding: 20px 20px;
}
 
#footer05 .main .logo {
  margin-bottom: 16px;
  text-align: center;
}
 
#footer05 .main .logo > a {
  display: inline-block;
}
 
#footer05 .main .address {
  color: #fff;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: -5px;
  text-align: center;
}
 
#footer05 .main .right {
  background: #222;
}
 
#footer05 .main .nav a {
  color: #ccc;
}
 
#footer05 .main .c-btn {
  margin-top: 10px;
}
 
@media only screen and (min-width: 641px) {
  #footer05 .main {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  #footer05 .main .left {
    width: 50%;
  }
  #footer05 .main .left > .inner {
    margin-left: auto;
    text-align: center;
    width: 500px;
  }
  #footer05 .main .head {
    display: inline-block;
    font-size: 0;
  }
  #footer05 .main .logo {
    display: inline-block;
    margin-bottom: 0;
    vertical-align: middle;
  }
  #footer05 .main .logo > a {
    width: 100px;
  }
  #footer05 .main .address {
    display: inline-block;
    margin-bottom: 0;
    margin-left: 20px;
    padding-left: 20px;
    position: relative;
    text-align: left;
    vertical-align: middle;
  }
  #footer05 .main .address::before {
    background-color: #fff;
    bottom: 0;
    content: '';
    height: 30px;
    left: 0;
    margin: auto;
    position: absolute;
    top: 0;
    width: 1px;
  }
  #footer05 .main .btn-wrap {
    margin: 0 auto;
    margin-top: 20px;
    width: 280px;
  }
  #footer05 .main .btn-wrap > .btn-contact {
    border-radius: 5px;
  }
  #footer05 .main .btn-wrap > .btn-contact > span {
    height: 48px;
    line-height: 50px;
  }
  .ie #footer05 .main .btn-wrap > .btn-contact > span {
    line-height: 52px;
  }
  #footer05 .main .right {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 50%;
  }
  #footer05 .main .right > .inner {
    padding-left: 40px;
    width: 600px;
  }
  #footer05 .main .nav {
    font-size: 0;
    margin-bottom: -20px;
  }
  #footer05 .main .nav > li {
    display: inline-block;
    font-size: 13px;
    margin-bottom: 20px;
    margin-right: 15px;
  }
  #footer05 .main .nav a {
    padding-right: 10px;
    position: relative;
  }
  #footer05 .main .nav a::before {
    content: '>';
    position: absolute;
    height: 3px;
    right: 0;
    top: 0;
    width: 5px;
    font-size: 12px;
  }
  #footer05 .main .nav a:hover {
    color: #c4341a;
    opacity: 1;
  }
  #footer05 .main .nav a:hover::before {
    color: #c4341a;
  }
}

@media only screen and (max-width: 640px) {
  #footer05 .main .nav {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
  
  }
  #footer05 .main .nav > li {
    width: 50%;
    border-bottom: 1px solid #ccc;
    display: inline-block;
    border-top: 1px solid #ccc;

  }
  #footer05 .main .nav > li:nth-child(odd) {
    border-right: 1px solid #ccc;

  }
  #footer05 .main .nav a {
    font-size: 11px;
    padding: 20px 10px;
    padding-right: 15px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    height: 60px;
  
}


 #footer05 .main .nav a   li nth-child(-n+6) {
    display: none; 

}


@media screen and (max-width:500px){
 
.sss{

width: 40%;
}


@media screen and (max-width: 460px){
#footer05 .main .nav li.test {display:none}
}

@media screen and (max-width:500px){
 
.header{

width: 85%;
}



/選手詳細ページ
---------------------------------------------------------------------------*/
table.vvv {
  width: 100%;
  border-spacing: 0;
}

table.vvv th {
  border-bottom: solid 2px #fb5144;
  padding: 10px 0;
}

table.vvv td {
  border-bottom: solid 2px #ddd;
  text-align: center;
  padding: 10px 0;
}



/電話かける
---------------------------------------------------------------------------*/

/*641px〜PC　PC上では見えないようにする*/
@media screen and (min-width:700px){
	.footer_area{
		display: none !important;
}	
}
 
/*スマホ〜641pxの幅サイズまで*/
@media screen and (max-width:700px){
.footer_area {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba( 0, 0, 0, 0.6 );
	z-index: 10000;
}
.footer_area .footer_area_inner {
    position: relative;
    width: 80%;
    margin: 0px auto;
    padding: 0px 0;
	margin-right: 0px;
}
.footer_area .footer_area_inner .footer_area_inner_btn {
    width: 85%;
    padding: 11px 0;
    font-size: 20px;
    font-weight: bold;
    margin-left: 15px;
	line-height: 1.3;
    
}
.inquiry_btn {
  
  position: fixed;
  width: 165px;
  height: 50px;
  text-align: center;
  line-height: 25px;
  left:50%;
  bottom: 4px;
  margin-left:-80px;
  display: block;
  background: rgba(204,0,0,.7);
  color: #fff;
  text-align: center;
  text-decoration: none;
  font-size:15px;
  border-radius: 8px;
}
.inquiry_btn:link, .inquiry_btn:visited {
    color: #FFFFFF !important;
}
.footer_area_inner span{
	color: #fff;
}
#siteBottom{
	margin-bottom: 85px;
}
}



