@charset "utf-8";


/*各cssファイルの読み込み
---------------------------------------------------------------------------*/
@import url("keyframes.css");
@import url("slide.css");


@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;700;900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Zen+Antique+Soft&display=swap');


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

/*全体の設定
---------------------------------------------------------------------------*/
body {
	margin: 0px;padding: 0px;
	font-family: 'Poppins', sans-serif;

	/*
	font-family: "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-family: "Noto Sans JP", sans-serif;
	*/
	font-size: 16px;	/*文字サイズ*/
	line-height: 1.6em;		/*行間*/
	color: #666;		/*文字色*/
	/*background: #fff;	背景色*/
	-webkit-text-size-adjust: none;
}
h1,h2,h3,h4,h5,p,ul,ol,li,dl,dt,dd,form,figure,form,select,textarea,input {margin: 0px;padding: 0px;font-size: 100%;font-weight: 400;}
ul {list-style-type: none;}
img {border: none;max-width: 100%;height: auto;vertical-align: middle;}
iframe {width: 100%;}

/*リンク（全般）設定
---------------------------------------------------------------------------*/
a {
	color: #666;
	text-decoration: none;
}
a:hover {
	color: #ea0053;
	text-decoration: none;
    background-color:rgba(196,0,69,0.9);	
}



/*ヘッダーブロック（ロゴやメニューが入った最上段ブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
	position: fixed;	/*ヘッダーを上部に固定する指定*/
	z-index: 1;
	left: 0px;			/*左からの配置場所の指定*/
	top: 0px;			/*上からの配置場所の指定*/
	width: 100%;		/*幅*/
	background: #000;	/*背景色*/
	font-size: 0.7em;	/*文字サイズ*/
	height: 100px;		/*ヘッダーの高さ*/
}
/*ロゴ画像*/
header #logo img {
padding: 25px;
	height: 50px;	/*高さ。上のheaderのheightと合わせる。*/
	float: left;	/*左に回り込み*/
	background: #000;	/*背景色background: #ea0053;*/
}

/*メインメニュー
---------------------------------------------------------------------------*/
/*メニューブロック全体*/
#menubar {
	float: left;
}
/*メニュー１個あたりの指定*/
#menubar li {
	float: left;
	letter-spacing: 0.1em;
}
#menubar li a, .ddmenu-title {
	display: block;
	text-decoration: none;
	color: #fff;	/*文字色*/
	padding: 0px 20px;	/*上下、左右へのメニュー内の余白*/
	line-height: 100px;	/*行間。headerのheightと数字を合わせる。*/
}
/*マウスオン時の背景色*/
#menubar li a:hover {
	background: #ea0053 !important;
}
/*ドロップダウンメニューの親メニューへの追加指定。基本指定は上の.ddmenu-titleにあります。*/
.ddmenu-title {
	padding-left: 40px;	/*アイコン分の余白を確保*/
	background: url(../images/arrow1.png) no-repeat 10px center / auto 25px;	/*アイコン画像の読み込み。最後の25pxは高さ指定。*/
}

/*小さい端末用メニューを非表示にする*/
#menubar-s,#menubar-s2 {display: none;}
/*３本バーアイコンを表示させない*/
#menubar_hdr {display: none;}

/*ドロップダウンメニュー（ddmenu）
---------------------------------------------------------------------------*/
/*メニューブロック全体*/
#menubar ul.ddmenu {
	position:absolute;visibility: hidden;z-index: 10;
	width: auto;
	margin-left: -40px;	/*.ddmenu-titleのpadding-leftと数字を合わせてマイナス記号をつける。*/
}
/*メニュー１個あたりの指定*/
#menubar ul.ddmenu li {
	float: none;
}
#menubar ul.ddmenu li a {
	background: #231815;	/*背景色（古いブラウザ用）*/
	background: rgba(0,0,0,0.8);	/*背景色。0,0,0は黒の事で0.8は色が80%出た状態。*/
	border: 1px solid rgba(255,255,255,0.4);	/*線の幅、線種、色。255,255,255は白の事で0.4は色が40%出た状態。*/
	border-top: none;	/*上の線だけ消す*/
}
/*１つ目のメニューへの追加指定*/
#menubar ul.ddmenu li:first-child a {
	border-top: 1px solid rgba(255,255,255,0.4);	/*上の線の指定*/
}
/*ドロップダウンのマウスオン事*/
li:hover ul.ddmenu {
	animation-name: opa1;	/*keyframes.cssで使う@keyframesの指定*/
	animation-duration: 0.4S;	/*アニメーションの実行時間。0.4秒。*/
	animation-fill-mode: both;	/*アニメーションの待機中は最初のキーフレームを維持、終了後は最後のキーフレームを維持。*/
}

/*facebookやtwitterなどのアイコン
---------------------------------------------------------------------------*/
/*アイコン全体を囲むブロック*/
ul.icon {
	float: right;	/*アイコンブロックを右に回り込み*/
	margin-right: 20px;	/*右側に空けるスペース*/
	font-size: 1.9em;
	color: #fff;
}

ul.icon a {
	color: #fff;
	text-decoration: none;
}
ul.icon a:hover {
	color: #ea0053;
	text-decoration: none;
}

/*アイコン１個あたりの設定*/
ul.icon li {
	display: inline-block;	/*横並びにさせる指定*/
	padding: 40px 0 0 10px;		/*上に空ける余白。header内の上下の配置バランスをここでとって下さい。*/
}
/*アイコン画像の設定*/
ul.icon img {
	width: 30px;		/*画像の幅*/
	margin-right: 5px;	/*画像同士の余白*/
}


/*facebookやtwitterなどのアイコン　レスポンシブメニュー用
---------------------------------------------------------------------------*/
/*アイコン全体を囲むブロック*/
ul.icon-sp {
	margin-right: 20px;	/*右側に空けるスペース*/
	font-size: 1.4em;
	color: #fff;
}

ul.icon-sp a {
	color: #fff;
	text-decoration: none;
}
ul.icon-sp a:hover {
	color: #ea0053;
	text-decoration: none;
}

/*アイコン１個あたりの設定*/
ul.icon-sp li {
	display: inline-block;	/*横並びにさせる指定*/
	padding: 25px 0 0 10px;		/*上に空ける余白。header内の上下の配置バランスをここでとって下さい。*/
}
/*アイコン画像の設定*/
ul.icon-sp li {
	float: left;
}


/*コンテンツ（contents）
---------------------------------------------------------------------------*/
/*コンテンツブロック全体*/
#contents {
	margin-top: 100px;	/*上に空ける余白。headerとの間に空けたいスペースを調整して下さい*/
	min-height: 100vh;
	/*padding: 3%;		コンテンツ内の余白*/
}
/*トップページのコンテンツへの追加指定*/
.home #contents {
	margin-top: 0;	/*スライドショーの高さに合わせて調整して下さい*/
}
/*h2タグ*/
#contents h2 {
	clear: both;
	margin-bottom: 20px;	/*下に空けるスペース*/
	font-size: 2em;		/*文字サイズ*/
	font-weight: 600;
	letter-spacing: 0.23em;
	color: #e60044;			/*文字色*/
	/*border-left: 10px solid #e60044;	左の線の幅、線種、色*/
	line-height: 2em;		/*行間*/
	/*padding-left: 12px;		左に空ける余白*/
	padding: 16px 0 0 16px;
    background: center / contain repeat url("../images/newimg-bg-01.png"),
        linear-gradient(to left, #e60044, #e60044 10%, #fff 30%, #fff 30%);
/*
    background: linear-gradient(to left, #333, #333 50%, #eee 75%, #333 75%);
    linear-gradient(10deg, rgba(230,0,68,0) 50%, rgba(230,0,68,.9) 90%);
    background-image: linear-gradient(10deg, rgba(0,0,0,0) 50%, rgba(0,0,0,.9) 90%);*/
}

h2 img {
height: 1.8em;
vertical-align: top;
}

/*h2タグ内のspanタグ*/
#contents h2 span {
	font-size: 50%;	/*文字サイズ*/
	font-weight: 400;
	letter-spacing: 0em;
	padding-left: 20px	/*左に空ける余白*/
}
/*h2タグ内のspanタグの文字の最初と最後に表示させる記号*/
#contents h2 span::before,#contents h2 span::after {
	content: "-";
}
/*h3タグ*/
#contents .event h3 {
	clear: both;
	margin: 32px 0;
	font-size: 1.2em;		/*文字サイズ*/
	font-weight: 600;
	border-bottom: 2px solid #e60044;	/*下の線の幅、線種、色*/
	padding-left: 0;		/*左に空ける余白*/
}
/*段落タグ設定*/
#contents p {
	padding: 0px 20px 20px;	/*上、左右、下への余白*/
}
/*他。微調整*/
#contents p + p {
	margin-top: -5px;
}
#contents h2 + p,
#contents h3 + p {
	margin-top: -10px;
}
#contents section + section {
	margin-top: 0;
}

/*list（トップページやServiceページで使っている横長ブロック）
---------------------------------------------------------------------------*/


/*ボックスの設定*/
.information .list {
	position: relative;
	overflow: hidden;
	display: flex;
	align-items: center;
	/*background: #696969;	背景色*/
	margin-bottom: 1px;	/*ボックス同士に空けるスペース*/
	padding: 8px;
}
/*リンクテキストの文字色*/
.information .list a {
	color: #666;
}
/*ボックス内のh5（見出し）タグ*/
.information .list h5 {
	margin-bottom: 10px;	/*下のテキストとの間に空けるスペース*/
	/*font-size: 1.2em;		文字サイズ*/
	padding: 0 20px;
	font-weight: 600;
	color: #e60044;
}
/*ボックス内のp（段落）タグ*/
.information .list p {
}
/*ボックス内のfigure画像*/
.information .list figure {
	float: left;	/*左に回り込み*/
	width: 50%;		/*画像の幅*/
}
/*「class="text"」を指定したブロック。テキストブロック。*/
.information .list .text {
	float: right;	/*右に回り込み*/
	width: 50%;		/*幅*/
	margin: 0;		/*外側に取るスペース。これがないと枠ギチギチに文字が表示されます。*/
}

.information ul,
.movie ul {
	display:inline-block;
	vertical-align:top; /* 上端揃え */
	width: 100%;
}

.information li,
.movie li {
}


/*list2（トップページやServiceページで使っている横長ブロック）
---------------------------------------------------------------------------*/
/*ボックスの設定*/
#contents .list2 {
	position: relative;
	overflow: hidden;
	display: flex;
	align-items: center;
	color: #fff;		/*文字色*/
	margin-bottom: 40px;	/*ボックス同士に空けるスペース*/
	border-radius: 10px;
	background: url("../img/bg-001.png") repeat-x center #1F1818;
	padding: 40px 0;
}

/*リンクテキストの文字色*/
#contents .list2 a {
	color: #fff;
}
/*ボックス内のh4（見出し）タグ*/
#contents .list2 h4 {
font-family: 'Zen Antique Soft', serif;
	margin-bottom: 10px;	/*下のテキストとの間に空けるスペース*/
	font-size: 120%;		/*文字サイズ*/
}
#contents .list2 h3 {
	margin: 40px 0;;	/*下のテキストとの間に空けるスペース*/
	font-size: 120%;		/*文字サイズ*/
}
/*ボックス内のp（段落）タグ*/
#contents .list2 p {
	padding: 0;		/*余白のリセット*/
}

/*「class="text"」を指定したブロック。テキストブロック。*/
#contents .list2 .text {
	float: right;	/*右に回り込み*/
	width: 100%;		/*幅*/
	margin: 3%;		/*外側に取るスペース。これがないと枠ギチギチに文字が表示されます。*/
}

#contents .list3 {
	position: relative;
	overflow: hidden;
	display: flex;
	align-items: center;
	color: #fff;		/*文字色*/
	margin-bottom: 40px;	/*ボックス同士に空けるスペース*/
	border-radius: 10px;
	background: url("../img/bg-002.png")  no-repeat center #e60044;
	padding: 40px 0;
}

/*リンクテキストの文字色*/
#contents .list3 a {
	color: #fff;
}
/*ボックス内のh4（見出し）タグ*/
#contents .list3 h4 {
font-family: 'Zen Antique Soft', serif;
	margin-bottom: 10px;	/*下のテキストとの間に空けるスペース*/
	font-size: 120%;		/*文字サイズ*/
}
#contents .list3 h3 {
	margin: 40px 0;;	/*下のテキストとの間に空けるスペース*/
	font-size: 140%;		/*文字サイズ*/
	border:#fff solid 1px;
	padding: 20px 0;
}
/*ボックス内のp（段落）タグ*/
#contents .list3 p {
	padding: 0;		/*余白のリセット*/
}

/*「class="text"」を指定したブロック。テキストブロック。*/
#contents .list3 .text {
	float: right;	/*右に回り込み*/
	width: 100%;		/*幅*/
	margin: 3%;		/*外側に取るスペース。これがないと枠ギチギチに文字が表示されます。*/
}

#contents .list4 {
	position: relative;
	overflow: hidden;
	display: flex;
	align-items: center;
	color: #fff;		/*文字色*/
	margin-bottom: 40px;	/*ボックス同士に空けるスペース*/
	border-radius: 10px;
	background: url("../img/bg-000.png")  no-repeat left center #fff;
	padding: 40px 0;
}

/*リンクテキストの文字色*/
#contents .list4 a {
	color: #fff;
}
/*ボックス内のh4（見出し）タグ*/
#contents .list4 h4 {
font-family: 'Zen Antique Soft', serif;
	margin: 40px 0 10px;	/*下のテキストとの間に空けるスペース*/
	font-size: 120%;		/*文字サイズ*/
color: #231815;
}
#contents .list4 h3 {
	margin: 40px 0;;	/*下のテキストとの間に空けるスペース*/
	font-size: 120%;		/*文字サイズ*/
}
/*ボックス内のp（段落）タグ*/
#contents .list4 p {
	padding: 0;		/*余白のリセット*/
}

/*「class="text"」を指定したブロック。テキストブロック。*/
#contents .list4 .text {
	float: right;	/*右に回り込み*/
	width: 100%;		/*幅*/
	margin: 3%;		/*外側に取るスペース。これがないと枠ギチギチに文字が表示されます。*/
}

#contents .list4 dl {
color: #231815;
}

#contents .list4 dl a {
color: #231815;
}






/*btn1
---------------------------------------------------------------------------*/
.btn1 {
	display: block;
	text-decoration: none;
	background: #ea0053 url("../img/bg-003.png") no-repeat 95% center / 200px;	/*背景色、アイコン画像の読み込み。95%は左からの配置場所、最後の15pxは画像幅。*/
	color: #fff;	/*文字色*/
	max-width: 260px;	/*最大幅。画面幅が狭くなった場合、小さく縮小されていきます。*/
	text-align: center;	/*テキストをセンタリング*/
	padding: 20px;	/*上下、左右へのボタン内の余白*/
	margin: 20px auto 0;	/*上、左右、下へのボタンの外側への余白*/
	vertical-align:middle;
	border-radius: 10px;
}
/*マウスオン事に少し位置をずらす指定*/
.btn1:hover {
	position: relative;
	left: 1px;
	top: 1px;
}


/*btn2
---------------------------------------------------------------------------*/
.btn2 {
	display: block;
	text-decoration: none;
	background: #231815 url("../img/bg-004.png") no-repeat 95% center / 200px;	/*背景色、アイコン画像の読み込み。95%は左からの配置場所、最後の15pxは画像幅。*/
	color: #fff;	/*文字色*/
	max-width: 260px;	/*最大幅。画面幅が狭くなった場合、小さく縮小されていきます。*/
	text-align: center;	/*テキストをセンタリング*/
	padding: 20px;	/*上下、左右へのボタン内の余白*/
	margin: 20px auto 0;	/*上、左右、下へのボタンの外側への余白*/
	vertical-align:middle;
	border-radius: 10px;
}
/*マウスオン事に少し位置をずらす指定*/
.btn2:hover {
	position: relative;
	left: 1px;
	top: 1px;
}

/*btn3
---------------------------------------------------------------------------*/
.btn3 {
	display: block;
	text-decoration: none;
	background: #231815 url("../img/bg-004.png") no-repeat 95% center / 200px;	/*背景色、アイコン画像の読み込み。95%は左からの配置場所、最後の15pxは画像幅。*/
	color: #fff;	/*文字色*/
	max-width: 800px;	/*最大幅。画面幅が狭くなった場合、小さく縮小されていきます。*/
	text-align: center;	/*テキストをセンタリング*/
	padding: 20px;	/*上下、左右へのボタン内の余白*/
	margin: 20px auto 0;	/*上、左右、下へのボタンの外側への余白*/
	vertical-align:middle;
	border-radius: 10px;
}
/*マウスオン事に少し位置をずらす指定*/
.btn3:hover {
	position: relative;
	left: 1px;
	top: 1px;
}

/*btn4
---------------------------------------------------------------------------*/
.btn4 {
	display: block;
	text-decoration: none;
	background: #ea0053 url("../img/bg-003.png") no-repeat 95% center / 200px;	/*背景色、アイコン画像の読み込み。95%は左からの配置場所、最後の15pxは画像幅。*/
	color: #fff;	/*文字色*/
	max-width: 800px;	/*最大幅。画面幅が狭くなった場合、小さく縮小されていきます。*/
	text-align: center;	/*テキストをセンタリング*/
	padding: 20px;	/*上下、左右へのボタン内の余白*/
	margin: 20px auto 0;	/*上、左右、下へのボタンの外側への余白*/
	vertical-align:middle;
	border-radius: 10px;
}
/*マウスオン事に少し位置をずらす指定*/
.btn4:hover {
	position: relative;
	left: 1px;
	top: 1px;
}


/*btn5
---------------------------------------------------------------------------*/
.btn5 {
	display: block;
	text-decoration: none;
	background: #ea0053 url("../img/bg-003.png") no-repeat 95% center / 200px;	/*背景色、アイコン画像の読み込み。95%は左からの配置場所、最後の15pxは画像幅。*/
	color: #fff;	/*文字色*/
	max-width: 100%;	/*最大幅。画面幅が狭くなった場合、小さく縮小されていきます。*/
	text-align: center;	/*テキストをセンタリング*/
	padding: 20px 0 0;	/*上下、左右へのボタン内の余白*/
	margin: 0 auto;	/*上、左右、下へのボタンの外側への余白*/
	vertical-align:middle;
}
/*マウスオン事に少し位置をずらす指定*/
.btn5:hover {
	position: relative;
	opacity: 0.6;
	/*border-top: solid #fff 1px;*/
	/*padding: 19px 0 0;	上下、左右へのボタン内の余白*/
}

/*btn6
---------------------------------------------------------------------------*/
.btn6 {
	display: block;
	text-decoration: none;
	background: #231815 url("../img/bg-004.png") no-repeat 95% center / 200px;	/*背景色、アイコン画像の読み込み。95%は左からの配置場所、最後の15pxは画像幅。*/
	color: #fff;	/*文字色*/
	max-width: 100%;	/*最大幅。画面幅が狭くなった場合、小さく縮小されていきます。*/
	text-align: center;	/*テキストをセンタリング*/
	padding: 20px 0 0;	/*上下、左右へのボタン内の余白*/
	margin: 20px auto 0;	/*上、左右、下へのボタンの外側への余白*/
	vertical-align:middle;
}
/*マウスオン事に少し位置をずらす指定*/
.btn6:hover {
	position: relative;
	border-top: solid #ea0053 1px;
	padding: 19px 0 0;	/*上下、左右へのボタン内の余白*/
}



/*フッター設定
---------------------------------------------------------------------------*/
footer {
}

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

/*１行分の設定*/
#footermenu ul {
background: #231815;
background-image: linear-gradient(135deg, rgba(143,0,50,.5) 10%, rgba(230,0,68,.9) 90%);
text-align: center;
}
/*見出し*/
#footermenu li {
margin: 20px;
display: inline-block;
}

#footermenu li a {
color: #fff;
padding: 20px 0;
text-decoration: none;
opacity: 1;	/*透明度。70%の色がついた状態。*/
}

#footermenu li a:hover {
opacity: 0.8;		/*透明度。100%色がついた状態。*/
}

/*コピーライト
---------------------------------------------------------------------------*/
#copyright {
	padding: 20px 0;
	text-align: center;
	background: #231815;	/*背景色*/
	font-size: 0.6em;
	font-weight: 600;
	letter-spacing: 0.1em;
}
#copyright a {text-decoration: none;}
#copyright a:hover {color: #666;}

/*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
/*ブロック全体の設定*/
#new dl {
	padding: 0px 20px;		/*上下、左右へのブロック内の余白*/
	margin-bottom: 20px;	/*ブロックの下(外側)に空ける余白*/
	height: 170px;			/*高さ*/
	overflow: auto;			/*上の高さを超えるコンテンツ量になった場合にスクロールバーを出す*/
}
/*日付設定*/
#new dt {
	float: left;
	width: 9em;
	letter-spacing: 0.1em;
}
/*記事設定*/
#new dd {
	padding-left: 9em;
	border-bottom: 1px solid #ccc;	/*下線の幅、線種、色*/
}

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

/*inputボタン
---------------------------------------------------------------------------*/
#contents input[type="submit"].btn,
#contents input[type="button"].btn,
#contents input[type="reset"].btn {
	padding: 5px 10px;		/*上下、左右へのボックス内の余白*/
	border: 1px solid #ccc;	/*枠線の幅、線種、色*/
	font-size: 20px;		/*文字サイズ*/
	border-radius: 3px;		/*角丸のサイズ*/
	background: #eee;		/*背景色*/
}
/*マウスオン時の設定*/
#contents input[type="submit"].btn:hover,
#contents input[type="button"].btn:hover,
#contents input[type="reset"].btn:hover {
	border: 1px solid #999;	/*枠線の幅、線種、色*/
	background: #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;
}

/*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: 80px;	/*下から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;	/*背景色*/
}

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

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

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



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

/*メインメニュー
---------------------------------------------------------------------------*/
/*スマホ用メニューブロック全体*/
#menubar-s {
	display: block;overflow: auto;
	height: 100%;
	text-align: left;
	position: fixed;z-index: 100;
	top: 100px;
	width: 100%;
	background: rgba(0,0,0,0.8);	/*背景色*/
	border-top: 1px solid #333333;		/*上の線の幅、線種、色*/
	animation-name: opa1;		/*keyframes.cssで使う@keyframesの指定*/
	animation-duration: 0.5s;	/*アニメーションの実行時間。0.5秒。*/
	animation-fill-mode: both;	/*待機中は最初のキーフレームを、完了後は最後のキーフレームを維持*/
	font-size: 16px;	/*文字サイズ*/
}



#menubar-s a:hover {
	background-color: #ea0053;
}






/*メニュー１個あたりの設定と、子メニューの見出し。*/
#menubar-s ul li a,
#menubar_hdr2 {
	display: block;text-decoration: none;
	padding: 20px 15px;	/*上下、左右へのメニュー内の余白*/
	/*border-bottom: 1px solid #333333;	下の線の幅、線種、色*/
	color: #fff;		/*文字色*/
}
/*PC用メニューを非表示にする*/
#menubar {display: none;}

/*子メニュー
---------------------------------------------------------------------------*/
/*子メニューの見出しの追加。基本は上のブロックで設定しています。*/
#menubar_hdr2 {
	padding-left: 35px;
}
/*子メニューメニューブロック全体*/
#menubar-s2 {
	display: block;
	margin-top: 10px;
	background: rgba(0,0,0,0.5);	/*背景色*/
	border: 1px solid #666;		/*上の線の幅、線種、色*/
	border-bottom: none;		/*下の線のみ消す*/
}
/*「＞」アイコン設定*/
#menubar_hdr2.close {
	background: url(../images/arrow2.png) no-repeat 10px 18px / 18px;
}
/*「＾」アイコン設定*/
#menubar_hdr2.open {
	background: url(../images/arrow3.png) no-repeat 10px 18px / auto 18px;
}
/*子メニュー１個あたりの設定*/
#menubar-s2 li a {
	color: #fff !important;	/*文字色*/
	padding: 5px;	/*余白*/
	border-bottom: 1px solid #666 !important;		/*下の線の幅、線種、色*/
}

#menubar-s2 li a:hover {
	color: #fff !important;	/*文字色*/
	padding: 5px;	/*余白*/
	border-bottom: 1px solid #666 !important;		/*下の線の幅、線種、色*/
}

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

/*facebookやtwitterなどのアイコン
---------------------------------------------------------------------------*/
/*アイコン全体を囲むブロック*/
ul.icon {
	float: left;	/*アイコンブロックを左に回り込み*/
	margin-left: 20px;	/*左側に空けるスペース*/
}

}



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

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

/*ヘッダーブロック（ロゴやメニューが入った最上段ブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
	height: 100px;		/*ヘッダーの高さ*/
	background: #000;	/*背景色background: #ea0053;*/
	text-align: center;
}
/*ロゴ画像*/
header #logo img {
	float: none;	/*左に回り込み*/
}

/*facebookやtwitterなどのアイコン
---------------------------------------------------------------------------*/
/*アイコン全体を囲むブロック*/
ul.icon {
background-color: #231815;
	float: none;
	margin: 0px;
	opacity: 0.6;
}
/*アイコン１個あたりの設定*/
ul.icon li {
	padding: 10px 20px;
}

/*コンテンツ（contents）
---------------------------------------------------------------------------*/
/*コンテンツブロック全体*/
#contents {
	margin-top: 100px;	/*上に空ける余白。headerとの間に空けたいスペースを調整して下さい*/
}
/*トップページのコンテンツへの追加指定*/
.home #contents {
	margin-top: 0;	/*スライドショーの高さに合わせて調整して下さい*/
}
/*h2タグ*/
#contents h2 {
	/*border-left: 5px solid #ea0053;	左の線の幅、線種、色*/
	/*line-height: inherit;*/
	/*padding-left: 10px;		/*左に空ける余白*/
}

/*h3タグ*/
#contents h3 {
}
/*段落タグ設定*/
#contents p {
	padding: 0px 15px 20px;	/*上、左右、下への余白*/
}

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

/*ボックスの設定*/
.information .list {
padding: 4px;
}
/*ボックス内のh5（見出し）タグ*/
.information .list h5 {
	margin-bottom: 10px;	/*下のテキストとの間に空けるスペース*/
	font-size: 1.6em;		/*文字サイズ*/
	padding: 0 15px;
	font-weight: 600;
}
/*ボックス内のp（段落）タグ*/
.information .list p {
}
/*ボックス内のfigure画像*/
.information .list figure {
	float: top;	/*左に回り込み*/
	width: 100%;		/*画像の幅*/
	margin: 0 0 10px;
}
/*「class="text"」を指定したブロック。テキストブロック。*/
.information .list .text {
	float: top;	/*右に回り込み*/
	width: 100%;		/*幅*/
	margin: 0;		/*外側に取るスペース。これがないと枠ギチギチに文字が表示されます。*/
}


/*その他
---------------------------------------------------------------------------*/
body.s-n #sub,body.s-n #footermenu {display: none;}
.big1 {font-size: 20px !important;}
.sh {display:block;}
.pc {display:none;}
.ws,.wl {width: 94%;}
.fl {float: none;}
.fr {float: none;}

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

}

}





/*追加Style
---------------------------------------------------------------------------
---------------------------------------------------------------------------
---------------------------------------------------------------------------
---------------------------------------------------------------------------
---------------------------------------------------------------------------
---------------------------------------------------------------------------
---------------------------------------------------------------------------
*/


section {
padding: 3%;
}


.button-ani {
  overflow: hidden;
}
.button-ani::before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  content: '';
  width: 200%;
  height: 100%;
  background: #d7d7d7;
  transform-origin: right top;
  transform: skewX(-35deg) scale(0, 1);
  transition: transform .3s;
  opacity: 0.4;
}
.button-ani:hover::before {
  transform-origin: left top;
  transform: skewX(-35deg) scale(1, 1);
}





.blink {
	-webkit-animation: blink 1s ease infinite;
	animation: blink 1s ease infinite;
}
@-webkit-keyframes blink {
	0% {opacity: 0;}
	100% {opacity: 1;}
}
@keyframes blink {
	0% {opacity: 0;}
	100% {opacity: 1;}
}









/**
 * Masthead
 * -------------------------------------------------------------------------- */
.masthead {
    position: relative;
    min-width: 360px;
}
.masthead-video {
    z-index: 0;
}

.masthead-overlay {
  width: 100%;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
  background-image: linear-gradient(45deg, rgba(0,0,0,.5) 30%, rgba(0,0,0,.9) 90%);
  background-size: 3px 3px;
  z-index: 0;
}

.masthead-video-credit {
    position: absolute;
    bottom: 0;
    right: 0;
    color: #fff;
    opacity: 0.9;
    font-size: 0.8em;
    font-weight: 400;
    letter-spacing: -0.02em;
    padding-right: 10px;
    bottom: 10px;
    text-decoration: none;
    text-align: right;
    line-height: 1.5;
    -webkit-transition: 0.2s ease all;
    -moz-transition: 0.2s ease all;
    transition: 0.2s ease all;
    letter-spacing: 0.23em;
}
.masthead-video-credit span {
    display: block;
}
.masthead-video-credit:hover {
    opacity: 1;
}
.masthead-arrow {
    position: absolute;
    bottom: 25px;
    left: 0;
    right: 0;
    margin: auto;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    width: 30px;
    height: 30px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    opacity: 0.8;
}

.masthead .masthead-logo {
    position: absolute;
    width: 100%;
    font-weight: 700;
    font-size: 1em;
    text-align: center;
    height: 120px;
    line-height: 3em;
    top: -300px;
    bottom: 0;
	margin: auto;
    color: #fff;
}

.masthead .masthead-logo h1 {
	margin: 0 0 20px;
}

.masthead .masthead-logo span {
    display: block;
    font-size: 0.6em;
    letter-spacing: 0.23em;
    font-weight: 400;
    text-transform: uppercase;
    padding-left: 7px;
    line-height: 1.6em;
    opacity: 0.8;
	margin: 0 0 30px;
}


.button {
	margin: 16px auto;
	padding: 3px 16px;
	max-width: 200px;
	border: 1px solid #fff;
	border-radius: 40px;
}

.button:hover {
	border: 1px solid #e60044;
	border-radius: 40px;
	background: #e60044;
}

.button a {
	color: #fff;
	display: block;
}

.button a:hover {
}


.button-ticket {
text-align: center;
	padding: 8px 16px;
	margin: 20px 0 0;
	border: 1px solid #e60044;
	border-radius: 40px;
	background: #e60044;
}

.button-ticket:hover {
	border: 1px solid #666;
	border-radius: 40px;
	background: #666;
}

.button-ticket a {
	color: #fff;
	display: block;
}

.button-ticket a:hover {
}


.button-result {
	padding: 8px 16px;
	border: 1px solid #666;
	border-radius: 40px;
	background: #666;
	margin: 54px 0 0;
	float: right;
}

.button-result:hover {
	border: 1px solid #e60044;
	border-radius: 40px;
	background: #e60044;
}

.button-result a {
	color: #fff;
	display: block;
}

.button-result a:hover {
}





.title-serif {
font-family: 'Zen Antique Soft', serif;
font-size: 1.8em;
}


.twofc-about {
float: left;
width: 50%;
}


.twofc-inner {
padding: 24px;
}

.twofc-inner img {
}

.twofc-information {
float: left;
width: 50%;
/*width: 33.33333%;*/
}


.twofc-inner h4 {
font-size: 1.6em;
line-height: 1.4em;
font-weight: 600;
padding: 16px 0 16px 16px;
margin: 16px 0;
border-left: #e60044 solid 16px;
}

.twofc-movie {
float: left;
width: 25%;
text-align: center;
}

.twofc-movie a:hover img {
opacity: 0.8;
filter: alpha(opacity=80);
-moz-opacity: 0.8;
-webkit-transition: 0.3s ease-in-out;
-moz-transition: 0.3s ease-in-out;
-o-transition: 0.3s ease-in-out;
transition: 0.3s ease-in-out;
}

.twofc-match-text {
font-size: 120%;
font-weight: 600;
}

.topics {
}

.twofc-event {
float: left;
width: 50%;
}

.twofc-event img {
display: block;
margin: auto;
}

.twofc-matchcard {
width: 100%;
max-width: 960px;
margin: 0 auto 20px;
}

.matchcard .list {
position: relative;
display: flex;
align-items: center;
padding: 8px;
}

.matchcard .list a {
	color: #666;
}
.matchcard h4 {
font-weight: 600;
text-align: center;
font-size: 1.6em;
background: #fff url("../img/bg-006.png") no-repeat 50% center / 100px;	/*背景色、アイコン画像の読み込み。95%は左からの配置場所、最後の15pxは画像幅。*/
padding: 16px 0;
border-bottom: 2px solid #ccc;
}

.matchcard .list h5 {
font-weight: 600;
color: #e60044;
font-size: 3em;
margin: 0 0 20px;
}

.matchcard .list p {
}

.matchcard .list figure {
text-align: center;
width: 33.3333%;
background: #231815;
}

.matchcard .list figure .coner-red {
border-bottom: 6px solid #FF0000;
}

.matchcard .list figure .coner-blue {
border-bottom:  6px solid #0800FF;

}

.matchcard .list .loser {
opacity: 0.3;
}

.matchcard .list figcaption {
color: #fff;
padding: 16px 0;
font-size: 1.4em;
}

.matchcard .list .text {
text-align: center;
width: 33.3333%;
margin: 0;
}

.twofc-result-inner {
width: 100%;
max-width: 1040px;
margin: 0 auto 20px;
}

.twofc-result {
float: left;
width: 50%;
}

.twofc-result h4 {
}

.txt-sml {
font-size: 0.6em;
}

.txt-mid {
font-size: 0.8em;
}

.twofc-fighter {
float: left;
width: 25%;
text-align: center;
}

.twofc-fighter a:hover img {
opacity: 0.8;
filter: alpha(opacity=80);
-moz-opacity: 0.8;
-webkit-transition: 0.3s ease-in-out;
-moz-transition: 0.3s ease-in-out;
-o-transition: 0.3s ease-in-out;
transition: 0.3s ease-in-out;
}

.twofc-fighter figure {
text-align: center;
background: #231815;
}

.twofc-fighter figcaption {
color: #fff;
padding: 16px 0;
font-size: 1.4em;
}


/* --------------------
support
--------------------- */

.twofc-support {
float: left;
width: 25%;
text-align: center;
}

.twofc-support a:hover img {
opacity: 0.8;
filter: alpha(opacity=80);
-moz-opacity: 0.8;
-webkit-transition: 0.3s ease-in-out;
-moz-transition: 0.3s ease-in-out;
-o-transition: 0.3s ease-in-out;
transition: 0.3s ease-in-out;
}

.twofc-support figure {
text-align: center;
background: #fff;
}

.twofc-support figcaption {
color: #231815;
padding: 16px 0;
font-size: 1.4em;
}



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

.twofc-inner {
padding: 4px;
}

.twofc-result,
.twofc-about,
.twofc-event,
.twofc-information,
.twofc-movie {
float: none;
width: 100%;
}

.twofc-fighter,
.twofc-support {
width: 50%;
}

#footermenu {
font-size: 0.9em;
}

#footermenu li {
width: 100%;
margin: 0;
padding: 20px 0;
border-bottom: rgba(255,255,255,0.3) solid 1px;
}

#footermenu li a:hover {
}

.button-result {
	margin: 0;
}

}





.txt-120 {
font-size: 120%;
}

.txt-140 {
font-size: 140%;
}

.txt-160 {
font-size: 160%;
}

.txt-180 {
font-size: 180%;
}

.txt-200 {
font-size: 200%;
}

.txt-220 {
font-size: 220%;
}

.txt-120 {
font-size: 120%;
}

.txt-infomation {
color: #231815;
}

.txt-pink {
color: #e60044;
}

.txt-bold {
font-weight: 600;
}

.mt-40 {
margin-top: 40px;
}





.about-twofc {

}


.fighter-detail-top {
text-align: center;
}

.fighter-detail-top figure {
}

.fighter-detail-top figcaption {
text-align: left;
margin: 40px 0 0;
}


.fighter h3 {
font-family: 'Zen Antique Soft', serif;
margin-bottom: 30px;	/*下のテキストとの間に空けるスペース*/
font-size: 320%;		/*文字サイズ*/
}

.fighter p span {
font-family: 'Noto Sans JP', sans-serif;
letter-spacing: 0.2em;
font-weight: 600;
}

/*h2タグ内のspanタグの文字の最初と最後に表示させる記号*/
.fighter p span::before,
.fighter p span::after {
	content: "-";
}

.fighter h5 {
	margin-bottom: 30px;	/*下のテキストとの間に空けるスペース*/
	font-size: 140%;		/*文字サイズ*/
	font-weight: 900;
	color: #e60044;
}

table.fighter-detail {
width: 100%;
margin: 0 auto;
border-collapse: separate;
border-spacing: 0px 20px;
font-size: 1em;
}

table.fighter-detail img {
width: 40%;
}

table.fighter-detail th,
table.fighter-detail td {
padding: 10px;
}

table.fighter-detail th {
background: #231815;
background-image: linear-gradient(135deg, rgba(143,0,50,.5) 10%, rgba(230,0,68,.9) 90%);
vertical-align: middle;
text-align: left;
width: 100px;
overflow: visible;
position: relative;
color: #fff;
font-weight: normal;
font-size: 15px;
}

table.fighter-detail th:after {
left: 100%;
top: 50%;
border: solid transparent;
content: " ";
height: 0;
width: 0;
position: absolute;
pointer-events: none;
border-color: rgba(211, 3, 65, 0);
border-left-color: #d30341;
/*border-left-color: #e60044;*/
border-width: 10px;
margin-top: -10px;
}
/* firefox */
@-moz-document url-prefix() {
table.fighter-detail 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: #295890 10px solid;
margin-top: -10px;
}
}

table.fighter-detail td {
background: #f8f8f8;
width: 360px;
padding-left: 20px;
}

table {
border: 0px none;
}

/* ----- privacy_policy__layout-01 ----- */@media screen and (min-width: 561px) {  .privacy_policy__layout-01 {    display: flex;    justify-content: space-between;  }}@media screen and (min-width: 1024px) {  .privacy_policy__layout-01 {    margin-bottom: 40px;  }}@media screen and (max-width: 1023px) {  .privacy_policy__layout-01 {    margin-bottom: 40px;  }}@media screen and (min-width: 561px) {  .privacy_policy__layout-01 article {    width: 80%;	margin: 0 auto;  }}@media screen and (min-width: 1024px) {  .privacy_policy__layout-01 figure {    margin-bottom: 30px;  }}.privacy_policy__layout-01 figure img {  border-radius: 5px;}@media screen and (min-width: 1024px) {  .privacy_policy__layout-01 h3 {    top: -30px;    right: 5.7377%;  }}.privacy_policy__layout-01 ol {  font-size: 100%;  padding: 0 0 0 40px;}.privacy_policy__layout-01 li {  margin: 20px 0;}.privacy_policy__layout-01 .num-en ol {  list-style: lower-alpha;}.privacy_policy__layout-01 .num-num ol {  list-style: decimal;}.privacy_policy__layout-01 dt{  float: left;  margin: 0 0 0 20px;} .privacy_policy__layout-01 dt::after{  content: "："}






@media (max-width: 768px) {
.pc {
display: none; } 
}

@media (min-width: 769px) {
.sp {
display: none;
 }
}