@charset "utf-8";

/*全端末（PC・タブレット・スマホ）共通設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/

/*全体の設定
---------------------------------------------------------------------------*/
body,html {overflow-x: hidden;}
body {
	margin: 0px;
	padding: 0px;
	color: #fff;	/*全体の文字色*/
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;	/*フォント種類*/
	font-size: 16px;	/*文字サイズ*/
	line-height: 2;		/*行間*/
	background: #000;	/*背景色*/
	-webkit-text-size-adjust: none;
}
h1,h2,h3,h4,h5,p,ul,ol,li,dl,dt,dd,form,figure {margin: 0px;padding: 0px;font-size: 100%;}
form,input,select,textarea {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;}
video {max-width: 100%;}
iframe {width: 100%;}

/*リンク（全般）設定
---------------------------------------------------------------------------*/
a {
	color: #fff;		/*リンクテキストの色*/
	transition: 0.4s;	/*マウスオン時の移り変わるまでの時間設定。0.4秒。*/
}
a:hover {
	color: #ffc321;			/*マウスオン時の文字色*/
	text-decoration: none;	/*マウスオン時に下線を消す設定。残したいならこの１行削除。*/
}

/*inner
---------------------------------------------------------------------------*/
.inner {
	max-width: 1200px;	/*サイトの最大幅。これ以上広がらない。*/
	margin: 0 auto;
}
#mainimg {
	margin: 0 auto 30px;
}

/*ヘッダー（ロゴが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
	background: #ae00e7 url(../../img/bg.png) no-repeat center center/ 100%;	/*背景色、背景画像の読み込み、幅を100%で表示。*/
	box-shadow: 0px 0px 30px #ae00e7;	/*テキストの影。右へ、下へ、ぼかし幅、色。0,0,0は黒のことで0.7は色が70%でた状態の事。*/
}
header .inner {
	position: relative;
	height: 120px;	/*ヘッダーの高さ*/
}
/*ロゴ画像*/
header #logo img {
	width: 180px;	/*画像の幅*/
	position: absolute;
	left: 10px;		/*ヘッダーブロックに対して、左からの配置場所の指定*/
	top: 0px;		/*ヘッダーブロックに対して、上からの配置場所の指定*/
}

/*ヘッダー右側の電話番号ブロック
---------------------------------------------------------------------------*/
#tel {
	position: absolute;
	right: 0px;	/*ヘッダーブロックに対して、右からの配置場所の指定*/
	top: 13px;	/*ヘッダーブロックに対して、上からの配置場所の指定*/
	background: #000;	/*背景色*/
	border-radius: 10px;	/*角丸のサイズ*/
	padding: 5px 20px;		/*上下、左右へのボックス内の余白*/
	font-size: 20px;		/*文字サイズを少し大きめに*/
	text-align: center;		/*中身をセンタリング*/
	letter-spacing: 0.1em;	/*文字間隔を少し広くとる*/
}
/*小文字部分*/
#tel span {
	display: block;
	font-size: 12px;	/*文字サイズの上書き*/
}

/*メインメニュー
---------------------------------------------------------------------------*/
/*メニューブロック*/
#menubar {
	margin-top: -20px;	/*ブロックを上にずらす指定。この分だけヘッダーに重なります。*/
}
/*メニュー１個あたりの設定*/
#menubar li {
	float: left;		/*左に回り込み*/
	line-height: 1.6;	/*行間*/
	width: 24.5%;		/*幅*/
	margin-left: 0.5%;	/*メニュー同士に空けるスペース*/
	text-align: center;	/*文字をセンタリング*/
	margin-bottom: 40px;	/*下に空けるスペース。下のコンテンツとの余白になります。*/
}
#menubar li a {
	display:  block;text-decoration: none;
	padding: 15px 0;	/*上下、左右へのメニュー内の余白*/
	color: #fff;		/*文字色*/
	background: #ae00e7;	/*背景色（古いブラウザ用）*/
	background: linear-gradient(#db8cf5, #c84df0 49%, #ae00e7 50%);/*背景グラデーション*/
	border: solid 1px #c84df0;	/*枠線の線種、幅、色*/
	box-shadow: 0px 0px 30px rgba(255,255,255,0.3) inset, 0px 5px 15px #ae00e7;	/*ボックスの影の指定。右へ、下へ、ぼかし幅、色。255,255,255は白の事で0.3は色が30%出た状態の事。insetは内側への指定。後半は外側への影。*/
	text-shadow: 2px 2px 5px rgba(0,0,0,0.5);	/*テキストの影。右へ、下へ、ぼかし幅、色。0,0,0は黒のことで0.5は色が50%でた状態の事。*/
}
/*１つ目のメニューへの追加指定*/
#menubar li:first-child {
	margin-left: 0;	/*左のスペースを消す*/
	width: 25%;	/*幅の上書き*/
}
/*小さな飾り文字*/
#menubar li a span {
	display: block;
	font-size: 11px;	/*文字サイズ*/
}
/*マウスオン時と、現在表示中メニューの設定*/
#menubar li a:hover, #menubar li.current a {
	box-shadow: none;
	text-shadow: none;
	background: #000;	/*背景色*/
	color: #fff;		/*文字色*/
	border: solid 1px transparent;	/*枠線の線種、幅、色*/
}

/*コンテンツ
---------------------------------------------------------------------------*/
#contents {
	width: 1200px;
	margin: 0 auto;
	clear: both;
	overflow: hidden;
	padding-bottom: 40px;
}
/*mainコンテンツ
---------------------------------------------------------------------------*/
#main {
	width: 100%;		/*幅*/
}
/*h2タグの設定*/
#main h2 {
	clear: both;
	margin-bottom: 20px;	/*見出しの下にとるスペース*/
	padding: 12px 20px;		/*上下、左右への余白*/
	color: #fff;			/*文字色*/
	background: #ae00e7;	/*背景色（古いブラウザ用）*/
	background: linear-gradient(#db8cf5, #c84df0 49%, #ae00e7 50%);/*背景グラデーション*/
	border: solid 1px #c84df0;	/*枠線の線種、幅、色*/
	box-shadow: 0px 0px 30px rgba(255,255,255,0.3) inset, 0px 5px 15px #ae00e7;	/*ボックスの影の指定。右へ、下へ、ぼかし幅、色。255,255,255は白の事で0.3は色が30%出た状態の事。insetは内側への指定。後半は外側への影。*/
	text-shadow: 2px 2px 5px rgba(0,0,0,0.5);	/*テキストの影。右へ、下へ、ぼかし幅、色。0,0,0は黒のことで0.5は色が50%でた状態の事。*/
}
/*mainコンテンツのh3タグの設定*/
#main h3 {
	clear: both;
	margin-bottom: 20px;	/*見出しの下にとるスペース*/
	padding: 10px 20px;		/*上下、左右への余白*/
	background: #222;		/*背景色（古いブラウザ用）*/
	background: linear-gradient(#222, #000);	/*背景グラデーション*/
	border: 1px solid #555;	/*枠線の幅、線種、色*/
}
/*mainコンテンツのh3タグの１文字目への追加設定*/
#main h3::first-letter {
	border-left: 3px solid #ae00e7;	/*左側のアクセントラインの幅、線種、色*/
	padding-left: 10px;				/*ラインとテキストの間に空ける余白*/
}
/*段落タグ設定*/
#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;
}

/*Cast用の各ブロック
---------------------------------------------------------------------------*/
/*各キャストボックスの設定*/
.list {
	position: relative;
	overflow: hidden;
	float: left;			/*左に回り込み*/
	font-size: 11px;		/*文字サイズ*/
	line-height: 1.5;		/*行間*/
	width: 15%;				/*ボックスの幅*/
	margin-left: 1.5%;		/*ボックスの左右間に空けるスペース*/
	margin-bottom: 20px;	/*ボックスの上下間に空けるスペース*/
}
.list a {
	text-decoration: none;display: block;overflow: hidden;
	padding: 10px;	/*ボックス内の余白*/
	border: 1px solid #c84df0;	/*枠線の幅、線種、色*/
	box-shadow: 0px 0px 50px #ae00e7 inset;	/*ボックスの影。右へ、下へ、広げる幅、色。insestは影を内側に向ける意味。*/
}
/*マウスオン時。内側の影を消す設定。*/
.list a:hover {
	box-shadow: none;	/*ボックスの影を消す指定*/
	border: 1px solid #ffc321;	/*枠線の幅、線種、色*/
}
/*ボックス内のh4タグ設定*/
.list h4 {
	margin: 10px 0 0;
	line-height: 1.5;	/*行間。1.5が１行分になります。*/
	height: 1.5em;		/*高さ1行。上の1.5が基準なので、1(行)を掛け算し、1.5em。emは文字サイズの単位。*/
	overflow: hidden;	/*上記を超える場合の文字を消す設定*/
}
/*ボックス内のp(段落)タグ設定*/
.list p {
	padding: 0px !important;
	line-height: 1.5;	/*行間。1.5が１行分になります。*/
	height: auto;	/*高さ3行。上の1.5が基準なので、3(行)を掛け算し、4.5em。emは文字サイズの単位。*/
	overflow: hidden;	/*上記を超える場合の文字を消す設定*/
}

.list img {
	height: 240px;
}
/*スタッフ詳細ページ　staff.html
---------------------------------------------------------------------------*/
/*左側ボックス*/
#main .staff {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
/*左側ボックス*/
#main .staff .left {
	width: 30%;		/*幅*/
	padding-bottom: 15px;
	display: block;
}

/*左側ボックス内のp(段落)タグ*/
#main .staff .left p {
	padding: 0px;
}
/*右側ボックス*/
#main .staff .right {
	width: 60%;		/*幅*/
	padding-bottom: 15px;
	display: block;
}
/*テーブルタグの左側の見出し（※幅以外は下の方にある「テーブル１」のスタイルで設定しています）*/
#main .staff .right .ta1 th {
	width: 100px;	/*幅*/
}

/*BACK*/
.back {
	width: 100px;	/*幅*/
	vertical-align: top;
}
/*スライダー設定*/
    .slider {
	width: 100%;
	margin: 0px auto;
	position: relative;
    }
    .slick-slide {
      margin: 0px 20px;
    }
    .slick-slide img {
      width: 100%;
    }
    .prev,.next {
	position: absolute;
	display: inline-block;
	width: 40px;
	height: 40px;
	z-index: 2;
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: 10px;
	background-color: rgba(218,0,224,0.59);
	text-align: center;
	line-height: 40px;
	top: 48%;
	left: 20px;
}
    .next {
	left: 89%;
  }
 

/*フッター設定
---------------------------------------------------------------------------*/
footer {
	clear: both;
	font-size: 90%;			/*文字サイズ*/
	text-align: center;		/*文字をセンタリング*/
	padding: 10px 0;		/*上下、左右へのフッター内の余白*/
	background: #ae00e7;	/*背景色*/
	color: #fff;			/*文字色*/
}
footer a {text-decoration: none;color: #fff;}
footer a:hover {color: #fff;}
footer .pr {display: block;font-size: 80%;}

/*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
/*ブロック全体の設定*/
#new dl {
	padding: 0 20px 20px;	/*上、左右、下へのボックス内の余白*/
}
/*日付設定*/
#new dt {
	float: left;	/*左に回り込み*/
	width: 9em;		/*幅*/
	letter-spacing: 0.1em;	/*文字間隔*/
}
/*記事設定*/
#new dd {
	padding-left: 9em;	/*左に空けるスペース。日付の幅の分をここで確保。*/
	border-bottom: 1px solid #555;	/*下線の幅、線種、色*/
}

/*テーブル（ta1）
---------------------------------------------------------------------------*/
/*テーブルの見出し（※caption）*/
.ta1 caption {
	border: 1px solid #ccc;	/*テーブルの枠線の幅、線種、色*/
	border-bottom: none;	/*下線だけ消す*/
	text-align: left;		/*文字を左寄せ*/
	font-weight: bold;		/*太字に*/
	padding: 10px;			/*ボックス内の余白*/
	background: #222;		/*背景色*/
}
/*テーブルの見出し（※tamidashi）*/
.ta1 th.tamidashi {
	width: auto;
	text-align: left;	/*左よせ*/
	background: #222;	/*背景色*/
}
/*ta1設定*/
.ta1 {
	table-layout: fixed;
	width: 100%;
	margin: 0 auto 20px;
}
.ta1, .ta1 td, .ta1 th {
	word-break: break-all;
	border: 1px solid #ccc;	/*テーブルの枠線の幅、線種、色*/
	padding: 10px 15px;		/*ボックス内の余白*/
}
/*ta1の左側ボックス*/
.ta1 th {
	width: 140px;	/*幅*/
	text-align: center;	/*センタリング*/
}
/*schedule-table（CMS用）*/
.ta1.schedule-table th{
	width: auto;
}
.ta1.schedule-table td{
	width: 12%;
	text-align: center;
}

/*「人気」「NEW」マーク
---------------------------------------------------------------------------*/
/*mark1,matk2共通設定*/
.mark1 {
	display: inline-block;
	position: absolute;
	left: 15px;	/*ボックス内の左から15pxの場所に配置*/
	top: 15px;	/*ボックス内の上から15pxの場所に配置*/
	width: 40px;		/*幅*/
	line-height: 40px;	/*高さ*/
	font-size: 10px;		/*文字サイズ*/
	text-align: center;
	color: #fff;	/*文字色*/
	border-radius: 50%;	/*角丸のサイズ*/
	transform: rotate(-30deg);	/*左回転で30度傾ける設定*/
	-webkit-box-shadow: 1px 2px 4px rgba(0,0,0,0.6);	/*ボックスの影。下へ、右へ、広げる範囲、rgb指定での色。0,0,0は黒のことで、0.6が透明度60%の事。*/
	box-shadow: 1px 2px 4px rgba(0,0,0,0.6);
	background: #df246f;	/*mark1の背景色*/
}
.mark2 {
	display: inline-block;
	position: absolute;
	left: 75px;	/*ボックス内の左から15pxの場所に配置*/
	top: 15px;	/*ボックス内の上から15pxの場所に配置*/
	width: 100px;		/*幅*/
	line-height: 20px;	/*高さ*/
	font-size: 12px;	/*文字サイズ*/
	text-align: center;
	color: #fff;	/*文字色*/
	-webkit-box-shadow: 1px 2px 4px rgba(0,0,0,0.6);	/*ボックスの影。下へ、右へ、広げる範囲、rgb指定での色。0,0,0は黒のことで、0.6が透明度60%の事。*/
	box-shadow: 1px 2px 4px rgba(0,0,0,0.6);
	background: #249fdf;
}

/*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;
}

/*ul.disc,olタグ
---------------------------------------------------------------------------*/
ul.disc {
	list-style: disc;
	padding: 0 20px 20px 40px;
}
ol {
	padding: 0 20px 20px 45px;
}

/*その他
---------------------------------------------------------------------------*/
.look {background: #eee;color: #333;padding: 5px 10px;border-radius: 4px;border: 1px solid #ccc;}
.mb10 {margin-bottom: 10px;}
.mb15,.mb1em {margin-bottom: 15px !important;}
.mb30 {margin-bottom: 30px !important;}
.clear {clear: both;}
.color1, .color1 a {color: #ffc321;}
.border1 {border: 1px solid #ccc;}
.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%;}
.big1 {font-size: 24px;}
.mini1 {font-size: 11px;display: inline-block;line-height: 1.5;}
.sh {display: none;}



/*画面幅1250px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:1250px){

/*inner
---------------------------------------------------------------------------*/
.inner {
	margin: 0 3%;
}

}

/*画面幅900px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:900px){

/*ヘッダー（ロゴが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header .inner {
	height: auto;
	text-align: center;
	padding: 20px 0;
}
/*ロゴ画像*/
header #logo img {
	position: static;
}

/*ヘッダー右側の電話番号ブロック
---------------------------------------------------------------------------*/
#tel {
	display: none;
}

/*コンテンツ（mainとsubを囲むブロック）
---------------------------------------------------------------------------*/
#contents {
	padding-top: 30px;
}

/*main,subコンテンツ
---------------------------------------------------------------------------*/
#main, #sub {
	float: none;
	width: auto;
	clear: both;
}

/*list-subボックス
---------------------------------------------------------------------------*/
/*ボックス１個あたりの設定*/
.list-sub {
	font-size: 14px;	/*文字サイズ*/
	line-height: 2;	/*行間*/
}
/*画像*/
.list-sub img {
	width: 20%;		/*幅*/
}

/*テーブル
---------------------------------------------------------------------------*/
.ta-box {overflow-x: auto;}
.ta-box .ta1 {overflow-x: auto;min-width: 900px;}

/*その他
---------------------------------------------------------------------------*/
body.s-n #sub,body.s-n #footermenu,.m-n {display: none;}
.sh {display:block;}
.pc {display:none;}

}



/*画面幅600px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:600px){
#contents {
	width: 100%;		/*幅*/
}
/*Cast用の各ブロック
---------------------------------------------------------------------------*/
/*各キャストボックスの設定*/
.list {
	width: 49%;
	margin-left: 3px;
	font-size: 100%;
	line-height: normal;
}
.list figure {
	width: 100%;
	margin-left: 5px;
}

/*スタッフ詳細ページ　staff.html
---------------------------------------------------------------------------*/
/*左側ボックス*/
.left {
	width: 100%;		/*幅*/
}

/*右側ボックス*/
.right {
	width: 100%;		/*幅*/
}
	
/*「人気」「NEW」マーク
---------------------------------------------------------------------------*/
/*mark1,matk2共通設定*/
/*mark1,matk2共通設定*/
.mark1, .mark2 {
	left: auto;		/*左に配置すると顔に重なるのでこの行でリセットし、下の行で右側に再設定します。*/
	right: 5px;
	transform: none;	/*傾きをなしに。傾いたままがいいならこの１行削除。*/
}

}

/*画面幅480px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:480px){

/*ヘッダー（ロゴが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*ロゴ画像*/
header #logo img {
    width: 250px;
	margin: -5px 0 0 0;
}

/*コンテンツ（mainとsubを囲むブロック）
---------------------------------------------------------------------------*/
#contents {
	font-size: 12px;
	font-size: 2.93vw;
}
	
	
	
/*メニュー
---------------------------------------------------------------------------*/
	/*メニュー１個あたりの設定*/
#menubar li {
	margin-bottom: 10px;	/*下に空けるスペース。下のコンテンツとの余白になります。*/
	font-size: 14px;
}
/*mainコンテンツ
---------------------------------------------------------------------------*/
#main h2,#main h3 {
	padding-left: 10px;
	padding-right: 10px;
}
/*段落タグ設定*/
#main p {
	padding: 0px 10px 20px;	/*上、左右、下への余白*/
}
/*他。微調整。*/
#main section + section {
	margin-top: 20px;
}

/*list-subボックス
---------------------------------------------------------------------------*/
/*ボックス１個あたりの設定*/
.list-sub {
	font-size: 12px;	/*文字サイズ*/
	line-height: 1.5;	/*行間*/
}

/*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
/*ブロック全体の設定*/
#new dl {
	padding: 0 10px;	/*上下、左右へのボックス内の余白*/
}

/*テーブル（ta1）
---------------------------------------------------------------------------*/
/*テーブル１行目に入った見出し部分（※caption）*/
.ta1 caption {
	padding: 5px;	/*ボックス内の余白*/
}
/*ta1設定*/
.ta1, .ta1 td, .ta1 th {
	padding: 5px;	/*ボックス内の余白*/
}
/*ta1の左側ボックス*/
.ta1 th {
	width: 100px;
}

/*ul.disc,olタグ
---------------------------------------------------------------------------*/
ul.disc {
	list-style: disc;
	padding: 0 10px 20px 30px;
}
ol {
	padding: 0 10px 20px 30px;
}

/*その他
---------------------------------------------------------------------------*/
.ws,.wl {width: 94%;}
.big1 {font-size: 16px;}
img.fr,img.fl {float: none;margin: 0;width: 100%;}

}

#main .staff .left {
	float: left;	/*左に回り込み*/
	width: 45%;		/*幅*/
	padding-bottom: 15px;
}

/*右側ボックス*/
#main .staff .right {
	width: 55%;		/*幅*/
	float: right;	/*右に回り込み*/
	padding-bottom: 15px;
}

/*スライダー設定*/
    .slider {
	width: 100%;
	margin: 0px auto;
	position: relative;
    }

.slider {
	
}

/*スライダー設定*/
    .slider {
	width: 100%;
	margin: 0px auto;
	position: relative;
    }
