@charset "utf-8";

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

/*全体の設定
---------------------------------------------------------------------------*/
body,html {width: 100%;height: 100%;}
body {
	margin: 0px;
	padding: 0px;
	color: #666;	/*全体の文字色*/
	font-family:"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;	/*フォント種類*/
	font-size: 14px;	/*文字サイズ*/
	line-height: 2;		/*行間*/
	background: #ffffea;	/*背景色*/
	-webkit-text-size-adjust: none;
}

h1,h2,h3,h4,h5,p,ul,ol,li,dl,dt,dd,form,figure,form {margin: 0px;padding: 0px;font-size: 100%;}
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;background: #eee;}
iframe {width: 100%;}

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

/*トップページ（※index.html）の設定
---------------------------------------------------------------------------*/
body.home {
	background: url(../images/mainimg.jpg) no-repeat left center;	/*背景画像の設定（古いブラウザ用）*/
	background: url(../images/mainimg.jpg) no-repeat left center / cover;	/*背景画像の設定*/
}
/*ロゴ*/
body.home .logo {
	background: #4169e1;	/*背景色royalblue*/
	text-align: center;	/*ロゴ画像の配置を左右の中央に*/
	padding: 10px;		/*ブロック内の余白*/
	position: relative;	/*下の配置場所を指定する為に必要なスタイル*/
	top: 43%;			/*上から43%の場所に配置*/
	animation-name: home-logo;	/*下のアニメーションで指定しているkeyframesの名前（@keyframes home-logo）*/
	animation-duration: 0.2S;	/*アニメーションの実行時間。0.2秒。*/
	animation-fill-mode: both;
	animation-delay: 1s;	/*１秒遅れてアニメーションをスタートさせる*/
}
body.home .logo img {
	width: 400px;	/*ロゴ画像の幅*/
}
/*ロゴのアニメーション*/
@keyframes home-logo {
0% {opacity: 0;transform: scaleY(0);}
100% {opacity: 1;transform: scaleY(1)}
}

/*container。サイト全体を囲むブロック
---------------------------------------------------------------------------*/
#container {
	max-width: 1500px;	/*最大幅の制限。これ以上広がらない。*/
}

/*mainブロック
---------------------------------------------------------------------------*/
#main {
	float: right;	/*右に回り込み*/
	width: 68%;		/*ブロックの幅*/
	margin-top: 100px;	/*上に空けるブロックの外側へのスペース*/
	margin-right: 3%;	/*右に空けるブロックの外側へのスペース*/
}
/*mainブロック内のh2(見出し)タグ*/
#main h2 {
	clear: both;
	margin-bottom: 20px;	/*見出しの下に空けるスペース*/
	text-align: leftr;		/*文字を左に*/
	background: #4169e1;		/*背景色royalblue*/
	color: #fff;			/*文字色*/
	border-radius: 30px;	/*角丸のサイズ*/
	line-height: 1.5;		/*行間*/
	padding: 10px 30px;		/*上下、左右へのブロック内の余白*/
}
/*mainブロック内のh3(見出し)タグ*/
#main h3 {
	clear: both;
	margin-bottom: 10px;	/*見出しの下に空けるスペース*/
	font-size: 12px;	/*文字サイズを少し小さめに*/
	text-align: left;		/*文字を左に*/
	border-radius: 10px;	/*角丸のサイズ*/
	border: 5px solid #fff;	/*枠線の幅、線種、色*/
	color: #000;			/*文字色*/
	line-height: 1.5;		/*行間*/
	padding: 1px 15px;		/*上下、左右へのブロック内の余白*/
	font-weight: normal;	/*見出しのデフォルトの太字を標準にする設定*/
}
/*mainブロック内のh5(見出し)タグ*/
#main h5 {
	clear: both;
	margin-bottom: 10px;	/*見出しの下に空けるスペース*/
	font-size: 12px;	/*文字サイズを少し小さめに*/
	text-align: left;		/*文字を左に*/
	border-radius: 10px;	/*角丸のサイズ*/
	border: 5px solid #fff;	/*枠線の幅、線種、色*/
	color: #000;			/*文字色*/
	line-height: 1.5;		/*行間*/
	padding: 1px 15px;		/*上下、左右へのブロック内の余白*/
	font-weight: normal;	/*見出しのデフォルトの太字を標準にする設定*/
}
/*h2タグとh3タグ内のspanタグ*/
#main h2 span, #main h3 span, #main h5 span {
	display: block;
	font-weight: normal;	/*見出しのデフォルトの太字を標準にする設定*/
	font-size: 12px;	/*文字サイズを少し小さめに*/
	letter-spacing: 0.1em;	/*文字間隔を少し広めに*/
}
/*mainブロック内のp(段落)タグ設定*/
#main p {
	padding: 0px 20px 20px;	/*上、左右、下への余白*/
}
#main h2 + p,
#main h3 + p,
#main h3 + p,
#main h5 + p {
	margin-top: -10px;
}
/*mainブロック内のsectin間のスペース*/
#main section + section {
	margin-top: 50px;
}

/*listブロック（works.html内で使用）
---------------------------------------------------------------------------*/
/*ブロック単位の設定*/
.list {
	position: relative;overflow: hidden;
	float: left;	/*左に回り込み*/
	width: 30%;		/*幅*/
	box-shadow: 2px 2px 5px rgba(0,0,0,0.1);	/*ボックスの影。右へ、下へ、広げる幅。0,0,0は黒の事で0.1は10%色がついた状態の事。*/
	line-height: 1.4;	/*行間を少し狭く。デフォルトの値は冒頭の「body」にあります。*/
	margin-left: 2.5%;	/*左に空けるボックスの外側へのスペース。左右間の余白になります。*/
	margin-bottom: 20px;	/*下に空けるボックスの外側へのスペース。上下間の余白になります。*/
	background: #fff;	/*背景色*/
	height: 300px;	/*下の「.list a」のheightの数字と合わせる*/
}
.list a {
	position: relative;overflow: hidden;text-decoration: none;display: block;
	height: 300px;	/*上のの「.list」のheightの数字と合わせる*/
}
/*マウスオン時のlistブロック*/
.list a:hover {
	background: #000;	/*背景色*/
	color: #fff;		/*文字色*/
}
/*リンクを設定した際に出るボックス内の「→」マーク*/
.list a::after {
	content: "→";	/*このテキストを表示させます。変更しても構いませんが機種依存文字は化けるので使わないように。*/
	display: inline-block;text-align: center;
	width: 15px;	/*幅*/
	line-height: 15px;	/*高さ*/
	position: absolute;
	right: 10px;	/*listブロックに対して右から10pxの場所に配置*/
	bottom: 10px;	/*listブロックに対して下から10pxの場所に配置*/
	font-size: 10px;	/*文字サイズ*/
	background: #000;	/*背景色*/
	color: #fff;		/*文字色*/
}
/*「→」マークのマウスオン時*/
.list a:hover::after {
	background: #fff;	/*背景色*/
	color: #000;		/*文字色*/
}
/*listブロック内のh4タグとpタグ共通設定*/
.list h4, .list p {
	padding: 0 !important;
	margin: 0 !important;
}
/*listブロック内のh4タグ*/
.list h4 {
	color: #000;	/*文字色*/
	padding: 10px !important;	/*余白*/
}
/*マウスオン時のh4タグ*/
.list a:hover h4 {
	color: #fff;	/*文字色*/
}
/*listブロック内のpタグ*/
.list p {
	font-size: 11px;	/*文字サイズ*/
	padding: 0 10px 10px !important;	/*上、左右、下への余白*/
}

/*subブロック
---------------------------------------------------------------------------*/
#sub {
	float: left;	/*左に回り込み*/
	width: 25%;		/*ブロックの幅*/
	max-width: 375px;	/*最大幅の制限。これ以上広くならない。*/
	height: 100%;	/*高さ*/
	background: url(../images/mainimg.jpg) no-repeat left center;	/*背景画像の読み込み（古いブラウザ用）*/
	background: url(../images/mainimg.jpg) no-repeat left center / cover;	/*背景画像の読み込み*/
	text-align: center;	/*ブロック内を中央に*/
	position: fixed;	/*画面をスクロールしても固定させる指定*/
	box-shadow: 0px 0px 20px rgba(0,0,0,0.5);	/*ブロックの影。右に、下に、広げる幅、0,0,0は黒の事で0.5は50%色が出た状態。*/
}
/*subブロックのロゴ*/
#sub .logo {
	width: 100%;	/*ロゴ画像の幅*/
	margin: 40px auto;	/*上下、左右へとるスペース*/
}

/*メインメニュー
---------------------------------------------------------------------------*/
/*メニューブロック*/
#menubar {
	border-top: 1px solid #fff;	/*上の線の幅、線種、色*/
}
/*メニュー１個あたりの設定*/
#menubar li {
	border-bottom: 1px solid #fff;	/*下の線の幅、線種、色*/
}
#menubar li a {
	display:  block;text-decoration: none;
	color: #fff;	/*文字色*/
	padding: 15px 5px;	/*上下、左右へのメニュー内の余白*/
	position: relative;	/*下の「■」を配置指定する為に必要なスタイル*/
}
/*説明表記（飾り文字）*/
#menubar li a span {
	display: block;
	font-size: 9px;	/*文字サイズ*/
}
/*マウスオン時と、現在表示中メニューの設定*/
#menubar li a:hover, #menubar li.current a {
	background: #4169e1;	/*背景色royalblue*/
}
/*現在表示中のメニューの右側に出る矢印マーク*/
#menubar li.current a::after {
	display: block;
	content: "■";	/*このテキストを表示させています。変更してもOKですが機種依存文字は化けるので使わないで下さい。*/
	color: #4169e1;	/*文字色*/
	font-size: 30px;	/*サイズ*/
	position: absolute;
	right: -10px;	/*上で「position:relative」を指定している「#menubar li a」ブロックに対して右から-10pxの場所に配置*/
	top: 10px;		/*上で「position:relative」を指定している「#menubar li a」ブロックに対して上から10pxの場所に配置*/
	transform: rotate(45deg);	/*45度回転させる*/
}
/*スマホ用メニューを表示させない*/
#menubar-s {display: none;}
/*３本バーアイコンを表示させない*/
#menubar_hdr {display: none;}

/*footerブロック
---------------------------------------------------------------------------*/
footer {
	clear: both;
	text-align: right;	/*右寄せ*/
	padding-top: 50px;	/*上に空ける余白*/
	padding-right: 3%;	/*右に空ける余白*/
	font-size: 12px;	/*文字サイズ*/
}
footer a {text-decoration: none;}
footer .pr {display: block;}

/*「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
/*見出しを含まないお知らせブロック*/
#new dl {
	padding: 0 30px;
}
/*日付設定*/
#new dt {
	float: left;
	width: 9em;		/*幅*/
	letter-spacing: 0.1em;
}
/*記事設定*/
#new dd {
	padding-left: 9em;
}

/*テーブル（ta_015）エンブレム、048 ワールドラグビー(WR)男子年間最優秀選手賞
---------------------------------------------------------------------------*/
.ta_015 {
	width: 100%;			/* ブラウザの幅で可変 */
	margin: 0 auto 10px;		/* 余白 */
	font-size: 12px;			/*文字サイズ*/
}

.ta_015 th {
	border: 1px solid #999;	/*テーブルの枠線の幅、線種、色*/
	background: #fff;		/*背景色*/
	padding: 5px 5px;		/*ボックス内の余白*/
	text-align: center;		/*センタリング*/
	font-weight: normal;		/* 文字の太さは通常 */
	word-break: break-all;	/* どの文字の間でも改行 */
}

.ta_015, .ta_015 td {
	border: 1px solid #999;	/*テーブルの枠線の幅、線種、色*/
	background: #fff;		/*背景色*/
	padding: 5px 5px;		/*ボックス内の余白*/
	text-align: center;		/*センタリング*/
	word-break: break-all;	/* どの文字の間でも改行 */
}

/* 偶数行のみ色を変える */
.ta_015, .ta_015 tr:nth-child(odd) td, .ta_299 tr:nth-child(odd) th {
	background: #eee;
}

/*テーブル（ta_106）ラグビー解説者一覧
---------------------------------------------------------------------------*/
.ta_106 {
	table-layout: fixed;		/* テーブルの列幅を均等にする */
	width: 100%;			/* ブラウザの幅で可変 */
	margin: 0 auto;			/* 余白 */
	font-size: 11px;			/*文字サイズ*/
}

.ta_106 th {
	border: 1px solid #999;	/*テーブルの枠線の幅、線種、色*/
	background: #fff;		/*背景色*/
	padding: 5px 5px;		/*ボックス内の余白*/
	text-align: left;			/*左寄せ*/
	font-weight: normal;		/* 文字の太さは通常 */
	word-break: break-all;	/* どの文字の間でも改行 */
	width: 120px;			/* 顔写真の大きさ */
}

.ta_106, .ta_106 td {
	border: 1px solid #999;	/*テーブルの枠線の幅、線種、色*/
	background: #fff;		/*背景色*/
	padding: 5px 5px;		/*ボックス内の余白*/
	text-align: left;			/*左寄せ*/
	word-break: break-all;	/* どの文字の間でも改行 */
}

/* 偶数行のみ色を変える */
.ta_106, .ta_106 tr:nth-child(odd) td, .ta_106 tr:nth-child(odd) th {
	background: #eee;
}

/*テーブル（ta_471）日本代表選手エピソード集
---------------------------------------------------------------------------*/
.ta_471 {
	table-layout: fixed;		/* テーブルの列幅を均等にする */
	width: 100%;			/* ブラウザの幅で可変 */
	margin: 0 auto;			/* 余白 */
	font-size: 12px;			/*文字サイズ*/
}

.ta_471 th {
	border: 1px solid #999;	/*テーブルの枠線の幅、線種、色*/
	background: #fff;		/*背景色*/
	padding: 5px 5px;		/*ボックス内の余白*/
	text-align: left;			/*左寄せ*/
	font-weight: normal;		/* 文字の太さは通常 */
	word-break: break-all;	/* どの文字の間でも改行 */
	width: 120px;			/* 顔写真の大きさ */
}

.ta_471, .ta_471 td {
	border: 1px solid #999;	/*テーブルの枠線の幅、線種、色*/
	background: #fff;		/*背景色*/
	padding: 5px 5px;		/*ボックス内の余白*/
	text-align: left;			/*左寄せ*/
	word-break: break-all;	/* どの文字の間でも改行 */
}

/* 偶数行のみ色を変える */
.ta_471, .ta_471 tr:nth-child(odd) td, .ta_471 tr:nth-child(odd) th {
	background: #eee;
}

/*テーブル（ta_124）トップリーグ受賞者一覧
---------------------------------------------------------------------------*/
.ta_124 {
	table-layout: fixed;		/* テーブルの列幅を均等にする */
	width: 100%;			/* ブラウザの幅で可変 */
	margin: 0 auto;			/* 余白 */
	font-size: 13px;			/*文字サイズ*/
}

.ta_124 th {
	border: 1px solid #999;	/* テーブルの枠線の幅、線種、色 */
	background: #fff;		/* 背景色*/
	padding: 5px 5px;		/* ボックス内の余白 */
	text-align: center;		/* センタリング */
	font-weight: normal;		/* 文字の太さは通常 */
	word-break: break-all;	/* どの文字の間でも改行 */
}

.ta_124, .ta_124 td {
	border: 1px solid #999;	/*テーブルの枠線の幅、線種、色*/
	background: #fff;		/*背景色*/
	padding: 5px 5px;		/*ボックス内の余白*/
	text-align: left;			/*左寄せ*/
	word-break: break-all;	/* どの文字の間でも改行 */
}

.ta_124 th.title {
	width: 8em;			/* 左端セルの横幅：2文字分 */
}

/* 偶数行のみ色を変える */
.ta_124, .ta_124 tr:nth-child(odd) td, .ta_124 tr:nth-child(odd) th {
	background: #eee;
}

/*テーブル（ta_144）フェアプレーランキング（2011～2021）
---------------------------------------------------------------------------*/
.ta_144 {
	table-layout: fixed;		/* テーブルの列幅を均等にする */
	width: 100%;			/* ブラウザの幅で可変 */
	margin: 0 auto;			/* 余白 */
	font-size: 12px;			/*文字サイズ*/
}

.ta_144 th {
	border: 1px solid #999;	/* テーブルの枠線の幅、線種、色 */
	background: #fff;		/* 背景色*/
	padding: 5px 5px;		/* ボックス内の余白 */
	text-align: center;		/* センタリング */
	font-weight: normal;		/* 文字の太さは通常 */
	word-break: break-all;	/* どの文字の間でも改行 */
}

.ta_144, .ta_144 td {
	border: 1px solid #999;	/*テーブルの枠線の幅、線種、色*/
	background: #fff;		/*背景色*/
	padding: 5px 5px;		/*ボックス内の余白*/
	text-align: center;			/*左寄せ*/
	word-break: break-all;	/* どの文字の間でも改行 */
}

.ta_144 th.title {
	width: 3em;			/* 左端セルの横幅：3文字分 */
}

/* 偶数行のみ色を変える */
.ta_144, .ta_144 tr:nth-child(odd) td, .ta_144 tr:nth-child(odd) th {
	background: #eee;
}

/*テーブル（ta_187）日本代表のワールドカップの戦績
---------------------------------------------------------------------------*/
.ta_187 {
	table-layout: fixed;		/* テーブルの列幅を均等にする */
	width: 100%;			/* ブラウザの幅で可変 */
	margin: 0 auto;			/* 余白 */
	font-size: 12px;			/*文字サイズ*/
}

.ta_187 th {
	border: 1px solid #999;	/* テーブルの枠線の幅、線種、色 */
	background: #fff;		/* 背景色*/
	padding: 5px 5px;		/* ボックス内の余白 */
	text-align: center;		/* センタリング */
	font-weight: normal;		/* 文字の太さは通常 */
	word-break: break-all;	/* どの文字の間でも改行 */
}

.ta_187, .ta_187 td {
	border: 1px solid #999;	/*テーブルの枠線の幅、線種、色*/
	background: #fff;		/*背景色*/
	padding: 5px 5px;		/*ボックス内の余白*/
	text-align: center;			/*左寄せ*/
	word-break: break-all;	/* どの文字の間でも改行 */
}

.ta_187 th.title {
	width: 9em;			/* 左端セルの横幅：9文字分 */
}

/* 偶数行のみ色を変える */
.ta_187, .ta_187 tr:nth-child(odd) td, .ta_187 tr:nth-child(odd) th {
	background: #eee;
}

/*テーブル（ta_191） index2、年間最優秀トライ賞、MVリンク
---------------------------------------------------------------------------*/
.ta_191 {
	table-layout: fixed;		/* テーブルの列幅を均等にする */
	width: 100%;			/* ブラウザの幅で可変 */
	margin: 0 auto 20px;		/* 余白 */
	font-size: 12px;			/*文字サイズ*/
}

.ta_191 th {
	width: 4em;				/* 左端セルの横幅：5文字分 */
	border: 1px solid #999;	/*テーブルの枠線の幅、線種、色*/
	background: #fff;		/*背景色*/
	padding: 5px 5px;		/*ボックス内の余白*/
	text-align: center;		/*センタリング*/
	font-weight: normal;		/* 文字の太さは通常 */
	word-break: break-all;	/* どの文字の間でも改行 */
}

.ta_191, .ta_191 td {
	border: 1px solid #999;	/*テーブルの枠線の幅、線種、色*/
	background: #fff;		/*背景色*/
	padding: 5px 5px;		/*ボックス内の余白*/
	text-align: left;			/*左寄せ*/
	word-break: break-all;	/* どの文字の間でも改行 */
}

/* 偶数行のみ色を変える */
.ta_191, .ta_191 tr:nth-child(odd) td, .ta_191 tr:nth-child(odd) th {
	background: #eee;
}

/*テーブル（ta_248）リーグワン移籍・退団選手一覧
---------------------------------------------------------------------------*/
.ta_248 {
	table-layout: fixed;		/* テーブルの列幅を均等にする */
	width: 100%;			/* ブラウザの幅で可変 */
	margin: 0 auto;			/* 余白 */
	font-size: 11px;			/*文字サイズ*/
}

.ta_248 th {
	border: 1px solid #999;	/*テーブルの枠線の幅、線種、色*/
	background: #fff;		/*背景色*/
	padding: 5px 5px;		/*ボックス内の余白*/
	text-align: left;			/*左寄せ*/
	font-weight: normal;		/* 文字の太さは通常 */
	word-break: break-all;	/* どの文字の間でも改行 */
	width: 120px;			/* 顔写真の大きさ */
}

.ta_248, .ta_248 td {
	border: 1px solid #999;	/*テーブルの枠線の幅、線種、色*/
	background: #fff;		/*背景色*/
	padding: 5px 5px;		/*ボックス内の余白*/
	text-align: left;			/*左寄せ*/
	word-break: break-all;	/* どの文字の間でも改行 */
}

/* 偶数行のみ色を変える */
.ta_248, .ta_248 tr:nth-child(odd) td, .ta_248 tr:nth-child(odd) th {
	background: #eee;
}

/*テーブル（ta_279）2019RWCの記録
---------------------------------------------------------------------------*/
.ta_279 {
	table-layout: fixed;		/* テーブルの列幅を均等にする */
	width: 100%;			/* ブラウザの幅で可変 */
	margin: 0 auto;			/* 余白 */
	font-size: 12px;			/*文字サイズ*/
}

.ta_279 th {
	width: 150px;			/* 左端セルの横幅 */
	border: 1px solid #999;	/* テーブルの枠線の幅、線種、色 */
	background: #fff;		/* 背景色*/
	padding: 5px 5px;		/* ボックス内の余白 */
	text-align: center;		/* センタリング */
	font-weight: normal;		/* 文字の太さは通常 */
	word-break: break-all;	/* どの文字の間でも改行 */
}

.ta_279, .ta_279 td {
	border: 1px solid #999;	/*テーブルの枠線の幅、線種、色*/
	background: #fff;		/*背景色*/
	padding: 5px 5px;		/*ボックス内の余白*/
	text-align: center;		/* センタリング */
	word-break: break-all;	/* どの文字の間でも改行 */
}

.ta_279 th.title {
	width: 120px;			/* 左端セルの横幅 */
}

/* 偶数行のみ色を変える */
.ta_279, .ta_279 tr:nth-child(odd) td, .ta_279 tr:nth-child(odd) th {
	background: #eee;
}

/*テーブル（ta_299）『人気選手投票』結果発表
---------------------------------------------------------------------------*/
.ta_299 {
	table-layout: fixed;		/* テーブルの列幅を均等にする */
	width: 100%;			/* ブラウザの幅で可変 */
	margin: 0 auto 20px;		/* 余白 */
	font-size: 12px;			/*文字サイズ*/
}

.ta_299 th {
	border: 1px solid #999;	/*テーブルの枠線の幅、線種、色*/
	background: #fff;		/*背景色*/
	padding: 5px 5px;		/*ボックス内の余白*/
	text-align: left;			/*左寄せ*/
	font-weight: normal;		/* 文字の太さは通常 */
	word-break: break-all;	/* どの文字の間でも改行 */
}

.ta_299 th.title {
	width: 17em;			/* 左端セルの横幅：16文字分 */
}

.ta_299, .ta_299 td {
	border: 1px solid #999;	/*テーブルの枠線の幅、線種、色*/
	background: #fff;		/*背景色*/
	padding: 5px 5px;		/*ボックス内の余白*/
	text-align: center;		/*センタリング*/
	word-break: break-all;	/* どの文字の間でも改行 */
}

/* 偶数行のみ色を変える */
.ta_299, .ta_299 tr:nth-child(odd) td, .ta_299 tr:nth-child(odd) th {
	background: #eee;
}

/*テーブル（ta_303）シックス・ネーションズ
---------------------------------------------------------------------------*/
.ta_303 {
	table-layout: fixed;		/* テーブルの列幅を均等にする */
	width: 100%;			/* ブラウザの幅で可変 */
	margin: 0 auto 20px;		/* 余白 */
	font-size: 12px;			/*文字サイズ*/
}

.ta_303 th {
	border: 1px solid #999;	/*テーブルの枠線の幅、線種、色*/
	background: #fff;		/*背景色*/
	padding: 5px 5px;		/*ボックス内の余白*/
	text-align: center;		/*センタリング*/
	font-weight: normal;		/* 文字の太さは通常 */
	word-break: break-all;	/* どの文字の間でも改行 */
}

.ta_303 th.title {
	width: 4em;			/* 左端セルの横幅：2文字分 */
}

.ta_303 td.title2 {
	width: 5em;			/* 左端セルの横幅：2文字分 */
}

.ta_303, .ta_303 td {
	border: 1px solid #999;	/*テーブルの枠線の幅、線種、色*/
	background: #fff;		/*背景色*/
	padding: 5px 5px;		/*ボックス内の余白*/
	text-align: center;		/*センタリング*/
	word-break: break-all;	/* どの文字の間でも改行 */
}

/* 偶数行のみ色を変える */
.ta_303, .ta_303 tr:nth-child(odd) td, .ta_303 tr:nth-child(odd) th {
	background: #eee;
}

/*テーブル（ta_309）2023RWCはフランス優勝（かも）
---------------------------------------------------------------------------*/
.ta_309 {
	table-layout: fixed;		/* テーブルの列幅を均等にする */
	width: 100%;			/* ブラウザの幅で可変 */
	margin: 0 auto 20px;		/* 余白 */
	font-size: 12px;			/*文字サイズ*/
}

.ta_309 th {
	border: 1px solid #999;	/*テーブルの枠線の幅、線種、色*/
	background: #fff;		/*背景色*/
	padding: 5px 5px;		/*ボックス内の余白*/
	text-align: center;		/*センタリング*/
	font-weight: normal;		/* 文字の太さは通常 */
	word-break: break-all;	/* どの文字の間でも改行 */
}

.ta_309 th.title {
	width: 3em;				/* セルの横幅：3文字分 */
}

.ta_309, .ta_309 td {
	border: 1px solid #999;	/*テーブルの枠線の幅、線種、色*/
	background: #fff;		/*背景色*/
	padding: 5px 5px;		/*ボックス内の余白*/
	text-align: left;		/*センタリング*/
	word-break: break-all;	/* どの文字の間でも改行 */
}

/* 偶数行のみ色を変える */
.ta_309, .ta_309 tr:nth-child(odd) td, .ta_309 tr:nth-child(odd) th {
	background: #eee;
}

/*テーブル（ta_315）動画リンク
---------------------------------------------------------------------------*/
.ta_315 {
	width: 100%;			/* ブラウザの幅で可変 */
	margin: 0 auto 20px;		/* 余白 */
	font-size: 11px;			/*文字サイズ*/
}

.ta_315, .ta_315 td {
	border: 1px solid #999;	/*テーブルの枠線の幅、線種、色*/
	background: #fff;		/*背景色*/
	padding: 5px 10px;		/*ボックス内の余白*/
	text-align: left;		/*センタリング*/
	word-break: break-all;	/* どの文字の間でも改行 */
}

.ta_315 th {
	border: 1px solid #999;	/*テーブルの枠線の幅、線種、色*/
	background: #fff;		/*背景色*/
	padding: 5px 5px;		/*ボックス内の余白*/
	text-align: center;			/*左寄せ*/
	font-weight: normal;		/* 文字の太さは通常 */
	word-break: break-all;	/* どの文字の間でも改行 */
}

/* 偶数行のみ色を変える */
.ta_315, .ta_315 tr:nth-child(odd) td, .ta_315 tr:nth-child(odd) th {
	background: #eee;
}

/*テーブル（ta_all）『一覧』『カテゴリー別一覧』『データ一覧』
---------------------------------------------------------------------------*/
.ta_all {
	table-layout: fixed;		/* テーブルの列幅を均等にする */
	width: 100%;			/* ブラウザの幅で可変 */
	margin: 0 auto 20px;		/* 余白 */
	font-size: 12px;			/*文字サイズ*/
}

.ta_all th {
	border: 1px solid #999;	/*テーブルの枠線の幅、線種、色*/
	background: #fff;		/*背景色*/
	padding: 5px 5px;		/*ボックス内の余白*/
	text-align: center;			/*左寄せ*/
	font-weight: normal;		/* 文字の太さは通常 */
	word-break: break-all;	/* どの文字の間でも改行 */
}

.ta_all th.title {
	width: 4em;			/* 左端セルの横幅：4文字分 */
}

.ta_all, .ta_all td {
	border: 1px solid #999;	/*テーブルの枠線の幅、線種、色*/
	background: #fff;		/*背景色*/
	padding: 5px 5px;		/*ボックス内の余白*/
	text-align: left;		/*センタリング*/
	word-break: break-all;	/* どの文字の間でも改行 */
}

/* 偶数行のみ色を変える */
.ta_all, .ta_all tr:nth-child(odd) td, .ta_all tr:nth-child(odd) th {
	background: #eee;
}

/*テーブル（ta_favo）「いいね」BEST20
---------------------------------------------------------------------------*/
.ta_favo {
	table-layout: fixed;		/* テーブルの列幅を均等にする */
	width: 100%;			/* ブラウザの幅で可変 */
	margin: 0 auto 20px;		/* 余白 */
	font-size: 12px;			/*文字サイズ*/
}

.ta_favo th {
	border: 1px solid #999;	/*テーブルの枠線の幅、線種、色*/
	background: #fff;		/*背景色*/
	padding: 5px 5px;		/*ボックス内の余白*/
	text-align: center;			/*左寄せ*/
	font-weight: normal;		/* 文字の太さは通常 */
	word-break: break-all;	/* どの文字の間でも改行 */
}

.ta_favo th.title {
	width: 6em;			/* 左端セルの横幅：4文字分 */
}

.ta_favo, .ta_favo td {
	border: 1px solid #999;	/*テーブルの枠線の幅、線種、色*/
	background: #fff;		/*背景色*/
	padding: 5px 5px;		/*ボックス内の余白*/
	text-align: left;		/*センタリング*/
	word-break: break-all;	/* どの文字の間でも改行 */
}

/* 偶数行のみ色を変える */
.ta_favo, .ta_favo tr:nth-child(odd) td, .ta_favo tr:nth-child(odd) th {
	background: #eee;
}

/*テーブル（ta_useful）『お役立ち情報』
---------------------------------------------------------------------------*/
.ta_useful {
	table-layout: fixed;		/* テーブルの列幅を均等にする */
	width: 100%;			/* ブラウザの幅で可変 */
	margin: 0 auto 20px;		/* 余白 */
	font-size: 12px;			/*文字サイズ*/
}

.ta_useful th {
	border: 1px solid #999;	/*テーブルの枠線の幅、線種、色*/
	background: #fff;		/*背景色*/
	padding: 5px 5px;		/*ボックス内の余白*/
	text-align: center;			/*左寄せ*/
	font-weight: normal;		/* 文字の太さは通常 */
	word-break: break-all;	/* どの文字の間でも改行 */
}

.ta_useful th.title {
	width: 4em;			/* 左端セルの横幅：4文字分 */
}

.ta_useful, .ta_useful td {
	border: 1px solid #999;	/*テーブルの枠線の幅、線種、色*/
	background: #fff;		/*背景色*/
	padding: 5px 5px;		/*ボックス内の余白*/
	text-align: left;		/*センタリング*/
	word-break: break-all;	/* どの文字の間でも改行 */
}

/* 偶数行のみ色を変える */
.ta_useful, .ta_useful tr:nth-child(odd) td, .ta_useful tr:nth-child(odd) th {
	background: #eee;
}

/*テーブル（ta_movie）『映画』
---------------------------------------------------------------------------*/
.ta_movie {
	table-layout: fixed;		/* テーブルの列幅を均等にする */
	width: 100%;			/* ブラウザの幅で可変 */
	margin: 0 auto 20px;		/* 余白 */
	font-size: 13px;			/*文字サイズ*/
	color: #fff000;			/*文字色*/
}

.ta_movie th {
	border: 1px solid #999;	/*テーブルの枠線の幅、線種、色*/
	background: #000000;	/*背景色*/
	padding: 5px 5px;		/*ボックス内の余白*/
	text-align: center;			/*左寄せ*/
	font-weight: normal;		/* 文字の太さは通常 */
	word-break: break-all;		/* どの文字の間でも改行 */
	color: #fff000;			/*文字色*/
}

.ta_movie th.title {
	width: 4em;			/* 左端セルの横幅：4文字分 */
}

.ta_movie, .ta_movie td {
	border: 1px solid #999;	/*テーブルの枠線の幅、線種、色*/
	background: #000000;		/*背景色*/
	padding: 5px 5px;		/*ボックス内の余白*/
	text-align: left;		/*センタリング*/
	word-break: break-all;	/* どの文字の間でも改行 */
}

/*テーブル（ta_movie_link_01）動画リンク
---------------------------------------------------------------------------*/
.ta_movie_link_01 {
	width: 100%;			/* ブラウザの幅で可変 */
	margin: 0 auto 20px;		/* 余白 */
	font-size: 12px;			/*文字サイズ*/
}

.ta_movie_link_01, .ta_movie_link_01 td {
	border: 1px solid #999;	/*テーブルの枠線の幅、線種、色*/
	background: #fff;		/*背景色*/
	padding: 5px 10px;		/*ボックス内の余白*/
	text-align: left;		/*センタリング*/
	word-break: break-all;	/* どの文字の間でも改行 */
}

.ta_movie_link_01 th {
	border: 1px solid #999;	/*テーブルの枠線の幅、線種、色*/
	background: #fff;		/*背景色*/
	padding: 5px 5px;		/*ボックス内の余白*/
	text-align: center;			/*左寄せ*/
	font-weight: normal;		/* 文字の太さは通常 */
	width: 5em;
	word-break: break-all;	/* どの文字の間でも改行 */
}

/* 偶数行のみ色を変える */
.ta_movie_link_01, .ta_movie_link_01 tr:nth-child(odd) td, .ta_movie_link_01 tr:nth-child(odd) th {
	background: #eee;
}

/*テーブル（ta_link）	リンク
---------------------------------------------------------------------------*/
/*ta_link設定*/
.ta_link {
	width: 100%;
	margin: 0 auto 20px;
	font-size: 11px;			/*文字サイズ*/
}
.ta_link, .ta_link td, .ta_link th {
	border: 1px solid #999;	/*テーブルの枠線の幅、線種、色*/
	background: #fff;	/*背景色*/
	padding: 10px 15px;	/*ボックス内の余白*/
	word-break: break-all;
}

.ta_link, .ta_link tr:nth-child(odd) td, .ta_link tr:nth-child(odd) th {
	background: #eee;
}

/*テーブル１行目に入った見出し部分*/
.ta_link th.tamidashi {
	width: auto;
	text-align: left;	/*左よせ*/
	background: #eee;	/*背景色*/
}
/*ta_linkの左側ボックス*/
.ta_link th {
	width: 100px;	/*幅*/
	text-align: center;	/*センタリング*/
	font-weight: normal;
}
/*左側ボックスに画像を入れた場合の設定*/
.ta_link th img {
	width: 100%;
}


/*ページの上部に戻る「↑」ボタン
---------------------------------------------------------------------------*/
@keyframes scroll {
0% {opacity: 0;}
100% {opacity: 1;}
}
/*通常時のボタンは非表示*/
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: 100;
	position: fixed;
	bottom: 20px;	/*ウィンドウの下から20pxの場所に配置*/
	right: 1%;		/*ウィンドウの右から1%の場所に配置*/
	background: #000;	/*背景色（古いブラウザ用）*/
	background: rgba(0,0,0,0.6);	/*背景色。0,0,0は黒の事で0.6は60%色がついた状態。*/
	color: #fff;	/*文字色*/
	border-radius: 50%;	/*角丸指定。50%にすると円形になる。四角形がいいならこの１行削除。*/
	animation-name: scroll;	/*上のアニメーションで指定しているkeyframesの名前（scroll）*/
	animation-duration: 1S;	/*アニメーションの実行時間*/
	animation-fill-mode: forwards;	/*アニメーションの完了後、最後のキーフレームを維持する*/
}
/*マウスオン時の背景色*/
body.is-fixed-pagetop .nav-fix-pos-pagetop a:hover {
	background: #999;
}

/*トップページのNEWアイコン
---------------------------------------------------------------------------*/
.newicon {
	background: #F00;	/*背景色*/
	color: #FFF;		/*文字色*/
	font-size: 70%;		/*文字サイズ*/
	line-height: 1.5;
	padding: 2px 5px;
	border-radius: 2px;
	margin: 0px 5px;
	vertical-align: text-top;
}

/*その他
---------------------------------------------------------------------------*/
.look {background: #c3b5a2;background: rgba(0,0,0,0.1);padding: 5px 10px;border-radius: 4px;}
.mb15,.mb1em {margin-bottom: 15px !important;}
.mb30 {margin-bottom: 30px !important;}
.mb50 {margin-bottom: 50px !important;}
.p0 {padding:0 !important;}
.clear {clear: both;}
ul.disc {padding: 0em 25px 15px;list-style: disc;}
.color1, .color1 a {color: #2b95ea !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: 50px;}
.mini1 {font-size: 11px;display: inline-block;line-height: 1.5;}
.sh {display: none;}
#sh-sub {display: none;}



/*画面幅が801px以上、かつ、高さが650px以下の場合の設定。
左メニューが650px以下になると切れて見えなくなるので、固定からスクロール表示に切り替えます。
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (min-width:801px) and (max-height:650px){

/*subブロック
---------------------------------------------------------------------------*/
#sub {
	position: absolute;	/*固定からスクロール表示に変更*/
	height: auto;
}

}



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

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

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

/*mainブロック
---------------------------------------------------------------------------*/
#main {
	float: none;
	margin: 100px 3% 0;
	width: auto;
}

/*subブロック
---------------------------------------------------------------------------*/
#sub {
	display: none;
}

/*小さな端末用(800px以下)で表示させるブロック
---------------------------------------------------------------------------*/
#sh-sub {
	display: block;	/*非表示から表示に切り替える*/
	position: fixed;
	top: 0px;	/*上から0pxの場所に配置*/
	height: 70px;	/*ブロックの高さ*/
	width: 100%;	/*ブロックの幅*/
	background: #4169e1;	/*背景色*/
}
/*ロゴ画像*/
#sh-sub .logo img {
	width: 300px;
	margin: 20px 4%;
}

/*その他
---------------------------------------------------------------------------*/
body.s-n #sub,body.s-n #footermenu,.m-n {display: none;}
.big1 {font-size: 24px;}
.fl {float: none;}
.fr {float: none;}
.sh {display:block;}
.pc {display:none;}

}



/*画面を横向きにした場合の高さが500px以下の場合の設定。メニューを２列にします。
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (orientation: landscape) and (max-height:500px){

/*メインメニュー
---------------------------------------------------------------------------*/
/*メニュー１個あたりの設定*/
#menubar-s li a {
	float: left;		/*左に回り込み*/
	width: 40%;			/*幅*/
	margin-left: 4%;	/*メニューの左側に空けるスペース*/
	line-height: 1.2;	/*行間*/
}

}



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

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

/*小さな端末用(800px以下)で表示させるブロック
---------------------------------------------------------------------------*/
/*ロゴ画像*/
#sh-sub .logo img {
	width: 200px;
	margin-top: 25px;
}

/*mainコンテンツ
---------------------------------------------------------------------------*/
/*段落タグ設定*/
#main p {
	padding: 0px 10px 15px;	/*上、左右、下への余白*/
}
/*mainブロック内のsectin間のスペース*/
#main section + section {
	margin-top: 30px;
}

/*listブロック（works.html内で使用）
---------------------------------------------------------------------------*/
/*ブロック単位の設定*/
.list {
	float: none;
	width: auto;
	height: auto;
}
.list a {
	height: auto;
}
/*画像の設定*/
.list figure {
	float: left;	/*左に回り込み*/
	width: 35%;		/*幅*/
	margin-right: 10px;	/*画像の右側に空けるスペース*/
}

/*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
/*見出しを含まないお知らせブロック*/
#new dl {
	padding: 0 10px;
}

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

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

/*その他
---------------------------------------------------------------------------*/
.ws,.wl {width: 94%;}
.big1 {font-size: 16px;}

}

.youtube {
  width: 100%;
  aspect-ratio: 16 / 9;
}
.youtube iframe {
  width: 100%;
  height: 100%;
}

.test {
  max-width: 92%;
}

#kana_red{background-image:url("../images/bg/kana_red.jpg");}
#sky{background-image:url("../images/bg/sky.jpg");}
#sanix{background-image:url("../images/bg/sanix.png");}
#blue{background-image:url("../images/bg/blue.png");}
#skyblue{background-image:url("../images/bg/skyblue.jpg");}
#brown{background-image:url("../images/bg/brown.png");}
#white{background-image:url("../images/bg/white.png");}
#gray{background-image:url("../images/bg/gray.png");}
#green01{background-image:url("../images/bg/green01.png");}
#green02{background-image:url("../images/bg/green02.png");}
#black{background-image:url("../images/bg/black.png");}
#purple{background-image:url("../images/bg/purple.png");}
#red{background-image:url("../images/bg/red.jpg");}
#cork{background-image:url("../images/bg/cork.jpg");}
#pink{background-image:url("../images/bg/pink.jpg");}
#orange{background-image:url("../images/bg/orange.jpg");}
#grass{background-image:url("../images/bg/grass.jpg");}
#grass02{background-image:url("../images/bg/grass02.jpg");}
#cream{background-image:url("../images/bg/cream.png");}
#yellow{background-image:url("../images/bg/yellow.png");}
#black{background-image:url("../images/bg/black.png");}
#cook01{background-image:url("../images/bg/cook01.jpg");}
#cook02{background-image:url("../images/bg/cook02.jpg");}
#cook03{background-image:url("../images/bg/cook03.jpg");}
#sakura{background-image:url("../images/bg/sakura.jpg");}
#naoto{background-image:url("../images/bg/naoto.jpg");}
#paper{background-image:url("../images/bg/paper.jpg");}

/*メニュー１個あたりの設定*/
nav#new_menubar ul li,
nav#new_menubar-s ul li {
	float: left;	/*メニューを左側に回り込み*/
	text-align: center;	/*内容をセンタリング*/
	width: 30%;		/*メニュー幅*/
	margin-left: 2%;	/*メニュー同士の隙間*/
	font-size: 12px;		/*文字サイズ*/
}
/*各メニューの写真部分の設定*/
nav#new_menubar ul li img,
nav#new_menubar-s ul li img {
	width: 90%;		/*上の15%の幅に対しての写真幅*/
	height: auto;
	-webkit-box-shadow: 1px 2px 10px rgba(0,0,0,0.3);	/*影の設定。右へ、下へ、ぼかし幅。rgba以降の3つの数字がRGBでの色（この場合は黒）。最後の小数点の数字が透明度30%の事。*/
	box-shadow: 1px 2px 10px rgba(0,0,0,0.3);			/*同上*/
	border: 5px solid #FFF;	/*枠線の幅、線種、色*/
	border-radius: 20%;		/*角丸の設定*/
	margin-bottom: 10px;	/*写真とメニューテキストの間にとるスペース*/
}
/*各メニューの写真部分のマウスオン時の設定*/
nav#new_menubar ul li:hover img,
nav#new_menubar-s ul li:hover img {
	border: 5px solid #FF3;	/*枠線の幅、線種、色*/
}
/*テキスト部分の設定*/
nav#new_menubar ul li a,
nav#new_menubar-s ul li a {
	text-decoration: none;
	color: #FFF;	/*文字色*/
}
nav#new_menubar ul li a span,
nav#new_menubar-s ul li a span {
	display: block;
	word-wrap: break-word;
	border-radius: 100px;	/*角丸の設定。大き目に設定しておけばOK。*/
	line-height: 1;			/*高さ*/
	background: rgba(0,0,0,0.3);	/*背景色。左の3つの数字がRGBでの色。0,0,0は黒。最後の小数点の数字が透明度。ここでは30%。*/
	margin-bottom: 30px;	/*下のコンテンツブロックとの余白*/
	padding: 4px;
}
/*テキスト部分のマウスオン時の設定。*/
nav#new_menubar ul li a:hover span,
nav#new_menubar-s ul li a:hover span {
	color: #FF3;	/*文字色*/
	background: rgba(0,0,0,0.6);	/*背景色。左の3つの数字がRGBでの色。0,0,0は黒。最後の小数点の数字が透明度。ここでは60%。*/
}
/*小さい端末用(画面幅800px以下)メニューを表示させない*/
#new_menubar-s {
	display: none;
}
/*800px以下のメニュー見出し（MENU）を表示させない*/
#new_menubar_hdr {
	display: none;
}

/*テーブル（ta_others）動画リンク
---------------------------------------------------------------------------*/
.ta_others {
	width: 100%;			/* ブラウザの幅で可変 */
	margin: 0 auto 20px;		/* 余白 */
	font-size: 11px;			/*文字サイズ*/
}

.ta_others, .ta_others td {
	border: 1px solid #999;	/*テーブルの枠線の幅、線種、色*/
	background: #fff;		/*背景色*/
	padding: 5px 10px;		/*ボックス内の余白*/
	text-align: left;		/*センタリング*/
	word-break: break-all;	/* どの文字の間でも改行 */
}

.ta_others th {
	border: 1px solid #999;	/*テーブルの枠線の幅、線種、色*/
	background: #fff;		/*背景色*/
	padding: 5px 10px;		/*ボックス内の余白*/
	text-align: left;			/*左寄せ*/
	font-weight: normal;		/* 文字の太さは通常 */
	word-break: break-all;	/* どの文字の間でも改行 */
}

.ta_others th.title {
	width: 10em;			/* 左端セルの横幅：3文字分 */
}

/* 偶数行のみ色を変える */
.ta_others, .ta_others tr:nth-child(odd) td, .ta_others tr:nth-child(odd) th {
	background: #eee;
}

/*NEWアイコン
-----------------------------------------------------------------------*/
.newicon {
	background: #F00;
	color: #FFF;
	font-size: 10px;
	padding: 0px 5px;
	border-radius: 2px;
	margin: 0px 5px;
}

.blue_line {background:rgba(0, 0, 0, 0) linear-gradient(transparent 75%, #bcddff  0%) repeat scroll 0 0;}

.orange_line {background:rgba(0, 0, 0, 0) linear-gradient(transparent 75%, #ffa3a3  0%) repeat scroll 0 0;}

.pink_line {background:rgba(0, 0, 0, 0) linear-gradient(transparent 75%, #ffb6c1  0%) repeat scroll 0 0;}

/*メニュー１個あたりの設定*/
nav#category_menubar ul li,
nav#category_menubar-s ul li {
	float: left;	/*メニューを左側に回り込み*/
	text-align: center;	/*内容をセンタリング*/
	width: 30%;		/*メニュー幅*/
	margin-left: 2%;	/*メニュー同士の隙間*/
	font-size: 12px;		/*文字サイズ*/
}
/*各メニューの写真部分の設定*/
nav#category_menubar ul li img,
nav#category_menubar-s ul li img {
	width: 90%;		/*上の15%の幅に対しての写真幅*/
	height: auto;
	-webkit-box-shadow: 1px 2px 10px rgba(0,0,0,0.3);	/*影の設定。右へ、下へ、ぼかし幅。rgba以降の3つの数字がRGBでの色（この場合は黒）。最後の小数点の数字が透明度30%の事。*/
	box-shadow: 1px 2px 10px rgba(0,0,0,0.3);			/*同上*/
	border: 5px solid #FFF;	/*枠線の幅、線種、色*/
	border-radius: 20%;		/*角丸の設定*/
	margin-bottom: 10px;	/*写真とメニューテキストの間にとるスペース*/
}
/*各メニューの写真部分のマウスオン時の設定*/
nav#category_menubar ul li:hover img,
nav#category_menubar-s ul li:hover img {
	border: 5px solid #FF3;	/*枠線の幅、線種、色*/
}
/*テキスト部分の設定*/
nav#category_menubar ul li a,
nav#category_menubar-s ul li a {
	text-decoration: none;
	color: #FFF;	/*文字色*/
}
nav#category_menubar ul li a span,
nav#category_menubar-s ul li a span {
	font-size: 11px;		/*文字サイズ*/
	display: block;
	word-wrap: break-word;
	border-radius: 100px;	/*角丸の設定。大き目に設定しておけばOK。*/
	line-height: 1;			/*高さ*/
	background: rgba(0,0,0,0.3);	/*背景色。左の3つの数字がRGBでの色。0,0,0は黒。最後の小数点の数字が透明度。ここでは30%。*/
	margin-bottom: 30px;	/*下のコンテンツブロックとの余白*/
	padding: 4px;
}
/*テキスト部分のマウスオン時の設定。*/
nav#category_menubar ul li a:hover span,
nav#category_menubar-s ul li a:hover span {
	color: #FF3;	/*文字色*/
	background: rgba(0,0,0,0.6);	/*背景色。左の3つの数字がRGBでの色。0,0,0は黒。最後の小数点の数字が透明度。ここでは60%。*/
}
/*小さい端末用(画面幅800px以下)メニューを表示させない*/
#category_menubar-s {
	display: none;
}
/*800px以下のメニュー見出し（MENU）を表示させない*/
#category_menubar_hdr {
	display: none;
}

/*メニュー１個あたりの設定*/
nav#kana_menubar ul li,
nav#kana_menubar-s ul li {
	float: left;	/*メニューを左側に回り込み*/
	text-align: center;	/*内容をセンタリング*/
	width: 30%;		/*メニュー幅*/
	margin-left: 2%;	/*メニュー同士の隙間*/
	font-size: 12px;		/*文字サイズ*/
}
/*各メニューの写真部分の設定*/
nav#kana_menubar ul li img,
nav#kana_menubar-s ul li img {
	width: 90%;		/*上の15%の幅に対しての写真幅*/
	height: auto;
	-webkit-box-shadow: 1px 2px 10px rgba(0,0,0,0.3);	/*影の設定。右へ、下へ、ぼかし幅。rgba以降の3つの数字がRGBでの色（この場合は黒）。最後の小数点の数字が透明度30%の事。*/
	box-shadow: 1px 2px 10px rgba(0,0,0,0.3);			/*同上*/
	border: 5px solid #FFF;	/*枠線の幅、線種、色*/
	margin-bottom: 10px;	/*写真とメニューテキストの間にとるスペース*/
}
/*各メニューの写真部分のマウスオン時の設定*/
nav#kana_menubar ul li:hover img,
nav#kana_menubar-s ul li:hover img {
	border: 5px solid #FF3;	/*枠線の幅、線種、色*/
}
/*テキスト部分の設定*/
nav#kana_menubar ul li a,
nav#kana_menubar-s ul li a {
	text-decoration: none;
	color: #FFF;	/*文字色*/
}
nav#kana_menubar ul li a span,
nav#kana_menubar-s ul li a span {
	font-size: 11px;		/*文字サイズ*/
	display: block;
	word-wrap: break-word;
	border-radius: 100px;	/*角丸の設定。大き目に設定しておけばOK。*/
	line-height: 1;			/*高さ*/
	background: rgba(0,0,0,0.3);	/*背景色。左の3つの数字がRGBでの色。0,0,0は黒。最後の小数点の数字が透明度。ここでは30%。*/
	margin-bottom: 30px;	/*下のコンテンツブロックとの余白*/
	padding: 4px;
}
/*テキスト部分のマウスオン時の設定。*/
nav#kana_menubar ul li a:hover span,
nav#kana_menubar-s ul li a:hover span {
	color: #FF3;	/*文字色*/
	background: rgba(0,0,0,0.6);	/*背景色。左の3つの数字がRGBでの色。0,0,0は黒。最後の小数点の数字が透明度。ここでは60%。*/
}
/*小さい端末用(画面幅800px以下)メニューを表示させない*/
#kana_menubar-s {
	display: none;
}
/*800px以下のメニュー見出し（MENU）を表示させない*/
#kana_menubar_hdr {
	display: none;
}

/*メニュー１個あたりの設定*/
nav#saki_menubar ul li,
nav#saki_menubar-s ul li {
	float: left;	/*メニューを左側に回り込み*/
	text-align: center;	/*内容をセンタリング*/
	width: 45%;		/*メニュー幅*/
	margin-left: 2%;	/*メニュー同士の隙間*/
	font-size: 12px;		/*文字サイズ*/
}
/*各メニューの写真部分の設定*/
nav#saki_menubar ul li img,
nav#saki_menubar-s ul li img {
	width: 90%;		/*上の15%の幅に対しての写真幅*/
	height: auto;
	-webkit-box-shadow: 1px 2px 10px rgba(0,0,0,0.3);	/*影の設定。右へ、下へ、ぼかし幅。rgba以降の3つの数字がRGBでの色（この場合は黒）。最後の小数点の数字が透明度30%の事。*/
	box-shadow: 1px 2px 10px rgba(0,0,0,0.3);			/*同上*/
	border: 5px solid #FFF;	/*枠線の幅、線種、色*/
	margin-bottom: 10px;	/*写真とメニューテキストの間にとるスペース*/
}
/*各メニューの写真部分のマウスオン時の設定*/
nav#saki_menubar ul li:hover img,
nav#saki_menubar-s ul li:hover img {
	border: 5px solid #FF3;	/*枠線の幅、線種、色*/
}
/*テキスト部分の設定*/
nav#saki_menubar ul li a,
nav#saki_menubar-s ul li a {
	text-decoration: none;
	color: #FFF;	/*文字色*/
}
/*テキスト部分のマウスオン時の設定。*/
nav#saki_menubar ul li a:hover span,
nav#saki_menubar-s ul li a:hover span {
	color: #FF3;	/*文字色*/
	background: rgba(0,0,0,0.6);	/*背景色。左の3つの数字がRGBでの色。0,0,0は黒。最後の小数点の数字が透明度。ここでは60%。*/
}
/*小さい端末用(画面幅800px以下)メニューを表示させない*/
#saki_menubar-s {
	display: none;
}
/*800px以下のメニュー見出し（MENU）を表示させない*/
#saki_menubar_hdr {
	display: none;
}



/*テーブル（ta_436）『日本代表』
---------------------------------------------------------------------------*/
.ta_436 {
	table-layout: fixed;		/* テーブルの列幅を均等にする */
	width: 100%;			/* ブラウザの幅で可変 */
	margin: 0 auto 10px;		/* 余白 */
	font-size: 13px;			/*文字サイズ*/
}

.ta_436 th {
	border: 1px solid #999;	/*テーブルの枠線の幅、線種、色*/
	background: #fff;		/*背景色*/
	padding: 5px 5px;		/*ボックス内の余白*/
	text-align: center;		/*センタリング*/
	font-weight: normal;		/* 文字の太さは通常 */
	word-break: break-all;	/* どの文字の間でも改行 */
}

.ta_436 th.title {
	width: 2em;			/* 左端セルの横幅：16文字分 */
}

.ta_436, .ta_436 td {
	border: 1px solid #999;	/*テーブルの枠線の幅、線種、色*/
	background: #fff;		/*背景色*/
	padding: 5px 5px;		/*ボックス内の余白*/
	text-align: left;			/*左寄せ*/
	word-break: break-all;	/* どの文字の間でも改行 */
}

/* 偶数行のみ色を変える */
.ta_436, .ta_436 tr:nth-child(odd) td, .ta_436 tr:nth-child(odd) th {
	background: #eee;
}

/*メニュー１個あたりの設定*/
nav#music_menubar ul li,
nav#music_menubar-s ul li {
	font-family: "Times New Roman" ;
	float: left;	/*メニューを左側に回り込み*/
	text-align: center;	/*内容をセンタリング*/
	width: 20%;		/*メニュー幅*/
	margin-left: 4%;	/*メニュー同士の隙間*/
	font-size: 14px;		/*文字サイズ*/
}
/*各メニューの写真部分の設定*/
nav#music_menubar ul li img,
nav#music_menubar-s ul li img {
	width: 90%;		/*上の15%の幅に対しての写真幅*/
	height: auto;
	-webkit-box-shadow: 1px 2px 10px rgba(0,0,0,0.3);	/*影の設定。右へ、下へ、ぼかし幅。rgba以降の3つの数字がRGBでの色（この場合は黒）。最後の小数点の数字が透明度30%の事。*/
	box-shadow: 1px 2px 10px rgba(0,0,0,0.3);			/*同上*/
	border: 5px solid #FFF;	/*枠線の幅、線種、色*/
	border-radius: 20%;		/*角丸の設定*/
	margin-bottom: 10px;	/*写真とメニューテキストの間にとるスペース*/
}
/*各メニューの写真部分のマウスオン時の設定*/
nav#music_menubar ul li:hover img,
nav#music_menubar-s ul li:hover img {
	border: 5px solid #FF3;	/*枠線の幅、線種、色*/
}
/*テキスト部分の設定*/
nav#music_menubar ul li a,
nav#music_menubar-s ul li a {
	text-decoration: none;
	color: #FFF;	/*文字色*/
}
nav#music_menubar ul li a span,
nav#music_menubar-s ul li a span {
	display: block;
	word-wrap: break-word;
	border-radius: 100px;	/*角丸の設定。大き目に設定しておけばOK。*/
	line-height: 1;			/*高さ*/
	background: rgba(0,0,0,0.3);	/*背景色。左の3つの数字がRGBでの色。0,0,0は黒。最後の小数点の数字が透明度。ここでは30%。*/
	margin-bottom: 30px;	/*下のコンテンツブロックとの余白*/
	padding: 4px;
}
/*テキスト部分のマウスオン時の設定。*/
nav#music_menubar ul li a:hover span,
nav#music_menubar-s ul li a:hover span {
	color: #FFFF00;	/*文字色*/
	background: rgba(0,0,0,0.6);	/*背景色。左の3つの数字がRGBでの色。0,0,0は黒。最後の小数点の数字が透明度。ここでは60%。*/
}
/*小さい端末用(画面幅800px以下)メニューを表示させない*/
#music_menubar-s {
	display: none;
}
/*800px以下のメニュー見出し（MENU）を表示させない*/
#music_menubar_hdr {
	display: none;
}

.box {
	font-family: "Times New Roman" ;
	color: #ffa500;
	padding: 20px;
	font-size: 14px;	/*文字サイズ*/
}

.box2 {
	font-family: "Times New Roman" ;
	color: #ffa500;;
	padding: 20px;
	font-size: 14px;	/*文字サイズ*/
}

.box3 {
	background: pink;
	color: #4169e1;
	font-family: "Times New Roman" ;
	padding: 20px;
	font-size: 14px;	/*文字サイズ*/
}

.box4 {
	color: #ffa500;
	font-family: "Times New Roman" ;
	padding: 20px;
	font-size: 14px;	/*文字サイズ*/
}

.box_m {
	font-family: "Times New Roman" ;
	padding: 10px;
	font-size: 16px;	/*文字サイズ*/
}

a.yellow_line:link {
text-decoration : underline;
color : #ffff00;
}

a.yellow_line:visited {
text-decoration : underline;
color : #ffff00;
}

a.yellow_line:active {
text-decoration : underline;
color : #ffff00;
}

a.yellow_line:hover {
text-decoration : underline;
color : #ffff00;
}

a.red_line:link {
text-decoration : underline;
color : #ff0000;
}

a.red_line:visited {
text-decoration : underline;
color : #ff0000;
}

a.red_line:active {
text-decoration : underline;
color : #ff0000;
}

a.red_line:hover {
text-decoration : underline;
color : #ff0000;
}

a.lightblue_line:link {
text-decoration : underline;
color : #00ffff;
}

a.lightblue_line:visited {
text-decoration : underline;
color : #00ffff;
}

a.lightblue_line:active {
text-decoration : underline;
color : #00ffff;
}

a.lightblue_line:hover {
text-decoration : underline;
color : #00ffff;
}

/*テーブル（ta_music）動画リンク
---------------------------------------------------------------------------*/
.ta_music {
	width: 100%;			/* ブラウザの幅で可変 */
	margin: 0 auto 20px;		/* 余白 */
	font-family: "Times New Roman" ;
}

.ta_music, .ta_music td {
	border: 1px solid #000;	/*テーブルの枠線の幅、線種、色*/
	background: #000;		/*背景色*/
	padding: 5px 10px;		/*ボックス内の余白*/
	text-align: left;			/*センタリング*/
	word-break: break-all;		/* どの文字の間でも改行 */
	font-family: "Times New Roman" ;
}

/*テーブル（ta_league）『トップリーグ、リーグワン』
---------------------------------------------------------------------------*/
.ta_league {
	table_layout: fixed;
	width: 100%;			/* ブラウザの幅で可変 */
	margin: 0 auto 20px;		/* 余白 */
	font-size: 12px;			/*文字サイズ*/
}

.ta_league th {
	width: 10em;				/*左端セルの横幅：10文字分 */
	border: 1px solid #999;	/*テーブルの枠線の幅、線種、色*/
	background: #fff;			/*背景色*/
	padding: 5px 5px;		/*ボックス内の余白*/
	text-align: center;			/*センタリング*/
	font-weight: normal;		/*文字の太さは通常 */
	word-break: break-all;		/*どの文字の間でも改行 */
}

.ta_league td {
	border: 1px solid #999;	/*テーブルの枠線の幅、線種、色*/
	background: #fff;			/*背景色*/
	padding: 5px 5px;		/*ボックス内の余白*/
	text-align: left;			/*左寄せ*/
	word-break: break-all;		/*どの文字の間でも改行 */
}

/* 偶数行のみ色を変える */
.ta_league, .ta_league tr:nth-child(odd) td, .ta_league tr:nth-child(odd) th {
	background: #eee;
}

/*テーブル（ta_japan）『日本代表』
---------------------------------------------------------------------------*/
.ta_japan {
	table_layout: fixed;
	width: 100%;			/* ブラウザの幅で可変 */
	margin: 0 auto 20px;		/* 余白 */
	font-size: 12px;			/*文字サイズ*/
}

.ta_japan th {
	width: 5em;				/*左端セルの横幅：10文字分 */
	border: 1px solid #999;	/*テーブルの枠線の幅、線種、色*/
	background: #fff;			/*背景色*/
	padding: 5px 5px;		/*ボックス内の余白*/
	text-align: center;			/*センタリング*/
	font-weight: normal;		/*文字の太さは通常 */
	word-break: break-all;		/*どの文字の間でも改行 */
}

.ta_japan td {
	border: 1px solid #999;	/*テーブルの枠線の幅、線種、色*/
	background: #fff;			/*背景色*/
	padding: 5px 5px;		/*ボックス内の余白*/
	text-align: left;			/*左寄せ*/
	word-break: break-all;		/*どの文字の間でも改行 */
}

/* 偶数行のみ色を変える */
.ta_japan, .ta_japan tr:nth-child(odd) td, .ta_japan tr:nth-child(odd) th {
	background: #eee;
}

/*テーブル（ta_japan）『日本代表』
---------------------------------------------------------------------------*/
.ta_japan2 {
	table_layout: fixed;
	width: 100%;			/* ブラウザの幅で可変 */
	margin: 0 auto 20px;		/* 余白 */
	font-size: 12px;			/*文字サイズ*/
}

.ta_japan2 th {
	width: 4em;				/*左端セルの横幅：10文字分 */
	border: 1px solid #999;	/*テーブルの枠線の幅、線種、色*/
	background: #fff;			/*背景色*/
	padding: 5px 5px;		/*ボックス内の余白*/
	text-align: center;			/*センタリング*/
	font-weight: normal;		/*文字の太さは通常 */
	word-break: break-all;		/*どの文字の間でも改行 */
}

.ta_japan2 td {
	border: 1px solid #999;	/*テーブルの枠線の幅、線種、色*/
	background: #fff;			/*背景色*/
	padding: 5px 5px;		/*ボックス内の余白*/
	text-align: left;			/*左寄せ*/
	word-break: break-all;		/*どの文字の間でも改行 */
}

/* 偶数行のみ色を変える */
.ta_japan2, .ta_japan2 tr:nth-child(odd) td, .ta_japan2 tr:nth-child(odd) th {
	background: #eee;
}

/*テーブル（ta_trc）『THE RUGBY CHAMPIONSHIP』
---------------------------------------------------------------------------*/
.ta_trc {
	table_layout: fixed;
	width: 100%;			/* ブラウザの幅で可変 */
	margin: 0 auto 20px;		/* 余白 */
	font-size: 12px;			/*文字サイズ*/
}

.ta_trc th {
	width: 2em;				/*左端セルの横幅：10文字分 */
	border: 1px solid #999;	/*テーブルの枠線の幅、線種、色*/
	background: #fff;			/*背景色*/
	padding: 5px 5px;		/*ボックス内の余白*/
	text-align: center;			/*センタリング*/
	font-weight: normal;		/*文字の太さは通常 */
	word-break: break-all;		/*どの文字の間でも改行 */
}

.ta_trc td {
	border: 1px solid #999;	/*テーブルの枠線の幅、線種、色*/
	background: #fff;			/*背景色*/
	padding: 5px 5px;		/*ボックス内の余白*/
	text-align: left;			/*左寄せ*/
	word-break: break-all;		/*どの文字の間でも改行 */
}

/* 偶数行のみ色を変える */
.ta_trc, .ta_trc tr:nth-child(odd) td, .ta_trc tr:nth-child(odd) th {
	background: #eee;
}

/* summary */
details summary {
  list-style: none;
  cursor: pointer;
  outline: none;
  transition: all 0.3s ease;
}
details summary::-webkit-details-marker {
  display: none;
}

/* サムネイルスライダー */

/* スライダー共通のスタイル */
.slider_container * {
  box-sizing: border-box;
}
.slider_container img {
  max-width: 100%;
}

/* メインスライダーのスタイル */
#slider {
  margin-bottom: 50px; 
}
#slider .slick-slide {
  margin: 0 5px;　/* スライドの間隔 */
}

/* サムネイルスライダーのスタイル */
#thumbs {
  max-width:100%;
  margin:0 auto;
}

#thumbs .slick-slide {
  margin: 0 5px;　/* スライドの間隔 */
}

/* 現在表示中のサムネイルのデザイン */
#thumbs .slick-current img {
  border: 4px solid #000;
}

/*list
---------------------------------------------------------------------------*/
.list-container {
	display: flex;
	flex-wrap: wrap;
}
.list {
	height: 0;
	width: 30%;
	padding-top: 30%;
	position: relative;
	border-radius: 20px;
	overflow: hidden;
	margin: 1%;
	box-shadow: 2px 2px 3px rgba(0,0,0,0.1);
}
.list a {
	display: block;
	position: absolute;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
}
.list img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transition: 0.5s;
}
.list img:hover {
	transform: scale(1.1);
	filter: contrast(1.5);
}

/*list2
---------------------------------------------------------------------------*/
.list-container2 {
	display: flex;
	flex-wrap: wrap;
}
.list2 {
	height: 0;
	width: 48%;
	padding-top: 30%;
	position: relative;
	border-radius: 20px;
	overflow: hidden;
	margin: 1%;
	box-shadow: 2px 2px 3px rgba(0,0,0,0.1);
}
.list2 a {
	display: block;
	position: absolute;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
}
.list2 img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transition: 0.5s;
}
.list2 img:hover {
	transform: scale(1.1);
	filter: contrast(1.5);
}

/*list_movie
---------------------------------------------------------------------------*/
.list-container_movie {
	display: flex;
	flex-wrap: wrap;
}
.list_movie {
	height: 0;
	width: 23%;
	padding-top: 23%;
	position: relative;
	border-radius: 10px;
	overflow: hidden;
	margin: 1%;
	box-shadow: 2px 2px 3px rgba(0,0,0,0.1);
}
.list_movie a {
	display: block;
	position: absolute;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
}
.list_movie img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transition: 0.5s;
}
.list_movie img:hover {
	transform: scale(1.1);
	filter: contrast(1.3);
}

/*main_movieブロック
---------------------------------------------------------------------------*/
#main_movie {
	margin-top: 20px;	/*上に空けるブロックの外側へのスペース*/
	margin-left: 3%;	/*左に空けるブロックの外側へのスペース*/
	margin-right: 3%;	/*右に空けるブロックの外側へのスペース*/
}
/*mainブロック内のh2(見出し)タグ*/
#main_movie h2 {
	clear: both;
	margin-bottom: 20px;	/*見出しの下に空けるスペース*/
	text-align: leftr;		/*文字を左に*/
	background: #4169e1;		/*背景色royalblue*/
	color: #fff;			/*文字色*/
	border-radius: 30px;	/*角丸のサイズ*/
	line-height: 1.5;		/*行間*/
	padding: 10px 30px;		/*上下、左右へのブロック内の余白*/
}
/*mainブロック内のh3(見出し)タグ*/
#main_movie h3 {
	clear: both;
	margin-bottom: 10px;	/*見出しの下に空けるスペース*/
	font-size: 12px;	/*文字サイズを少し小さめに*/
	text-align: left;		/*文字を左に*/
	border-radius: 10px;	/*角丸のサイズ*/
	border: 5px solid #fff;	/*枠線の幅、線種、色*/
	color: #000;			/*文字色*/
	line-height: 1.5;		/*行間*/
	padding: 1px 15px;		/*上下、左右へのブロック内の余白*/
	font-weight: normal;	/*見出しのデフォルトの太字を標準にする設定*/
}
/*mainブロック内のh5(見出し)タグ*/
#main_movie h5 {
	clear: both;
	margin-bottom: 10px;	/*見出しの下に空けるスペース*/
	font-size: 12px;	/*文字サイズを少し小さめに*/
	text-align: left;		/*文字を左に*/
	border-radius: 10px;	/*角丸のサイズ*/
	border: 5px solid #fff;	/*枠線の幅、線種、色*/
	color: #000;			/*文字色*/
	line-height: 1.5;		/*行間*/
	padding: 1px 15px;		/*上下、左右へのブロック内の余白*/
	font-weight: normal;	/*見出しのデフォルトの太字を標準にする設定*/
}
/*h2タグとh3タグ内のspanタグ*/
#main_movie h2 span, #main_movie h3 span, #main_movie h5 span {
	display: block;
	font-weight: normal;	/*見出しのデフォルトの太字を標準にする設定*/
	font-size: 12px;	/*文字サイズを少し小さめに*/
	letter-spacing: 0.1em;	/*文字間隔を少し広めに*/
}
/*mainブロック内のp(段落)タグ設定*/
#main_movie p {
	padding: 0px 20px 20px;	/*上、左右、下への余白*/
}
#main_movie h2 + p,
#main_movie h3 + p,
#main_movie h3 + p,
#main_movie h5 + p {
	margin-top: -10px;
}
/*mainブロック内のsectin間のスペース*/
#main_movie section + section {
	margin-top: 50px;
}

.ta_best10 {
	table-layout: fixed;		/* 固定 */
	width: 100%;			/* ブラウザの幅で可変 */
	margin-top:10px;
	margin-bottom:10px;
	margin-left:10px;
	margin-right:10px;
	background: #000;		/* 背景色 */
	font-size: 14px;			/* 文字サイズ */
	font-weight: bold;		/* 文字の太さは太字 */
}

.ta_best10, .ta_best10 th {
	width: 100%;				/* 幅 */
}

.ta_best10, .ta_best10 td {
	width: 96%;				/* 幅 */
	color: white;				/* 文字色：白 */
	padding: 5px 5px;		/*ボックス内の余白*/
}

.ta_best10, th, td {
	border: 1px solid #ffffff;	/* テーブルの枠線の幅、色 */
}

.img-wrap {
  overflow: hidden;
  position: relative;
}

.img-wrap::before,
.img-wrap::after {
  animation: 2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  background: #fff;
  content: '';
  pointer-events: none;
  position: absolute;
  z-index: 1;
}

/* 南早紀オープニング */

.img-wrap::before {
  animation-name: img-wrap-before;
  inset: 0 0 50%;
}

.img-wrap::after {
  animation-name: img-wrap-after;
  inset: 50% 0 0;
}

@keyframes img-wrap-before {
  100% {
    transform: translateX(100%);
  }
}

@keyframes img-wrap-after {
  100% {
    transform: translateX(-100%);
  }
}

/*list_s（メニュー写真や説明が入ったボックス一個あたり）
---------------------------------------------------------------------------*/
/*list_s内の全ての要素のマージンを一旦リセット*/
.list_s * {
	margin: 0;
}

/*ボックス１個あたり*/
.list_s {
	position: relative;
	display: flex;
	flex-direction: column;
	padding: 0.75rem;		/*ボックス内の余白*/
	background: #fff;		/*背景色*/
	box-shadow: 5px 5px 20px rgba(0,0,0,0.1);	/*ボックスの影。右へ、下へ、ぼかし幅、0,0,0は黒の事で0.1は色が10%出た状態。*/
	margin-bottom: 3%;
}

	/*画面幅700px以上の追加指定*/
	@media screen and (min-width:700px) {

	/*ボックス１個あたり*/
	.list_s {
		margin-bottom: 0;
	}

	}/*追加指定ここまで*/

/*ブロック内のh4*/
.list_s h4 {
	color: #555;	/*文字色*/
}

/*ブロック内のp要素*/
.list_s p {
	margin: 0;padding: 0;
	font-size: 0.75rem;	/*文字サイズを75%に*/
	line-height: 1.8;	/*行間を少し狭く*/
}

/*ボックス内のfigure画像*/
.list_s figure img {
	margin-bottom: 0.5rem;	/*画像の下に空けるスペース*/
}

.list-menu {
	display: grid;
	grid-template-columns: repeat(2, 1fr);	
	gap: 1rem;	/*写真ブロック同士に空けるマージン的な要素。*/
}

.list-menu-kana {
	display: grid;
	grid-template-columns: repeat(3, 1fr);	
	gap: 1rem;	/*写真ブロック同士に空けるマージン的な要素。*/
}
