﻿@charset "utf-8";

/* ------------------------------------------------ */
/* 2026/08/24 update */
/* ------------------------------------------------ */


/* 共通設定---------------------------------------- */

	*{
		margin:0;
		padding:0;
		border:0;
		outline:none;
		}

b{
	font-family:HiraKakuProN-W6,"ヒラギノ角ゴ Pro W6";
	font-weight:bold;
	}

	small{font-size:0.8em;}

	.fc_red{color:#dd0000;}
	.fc_blue{color:#0055dd;}
	.fc_cyan{color:#0099dd;}
	.fc_green{color:#00dd55;}
	.fc_white{color:#ffffff;}
	.fcb_red{color:#dd0000; font-weight:bold;}

	.fs_L{font-size:1.2em;}

	.txt-c{text-align:center;}
	.txt-r{text-align:right;}
	.txt-l{text-align:left;}

	hr{
		margin:10px 0px 10px 0px;
		color: #00a26a;
		background-color: #00a26a;
		border-style:none;
		height:1px;
		}


/*==================================================================================*/
/* smp用の設定 */
/* 2026-08-04 update */
/*==================================================================================*/

@media screen and (max-width:600px){

.smp{display:inline;}
#smp{display:block;}
.pc{display:none;}
#pc{display:none;}


#anchor_about,
#anchor_cast{
	margin-top:-60px;
	padding-top:60px;
	}

.header{
	top:0;
	left:0;
	height:60px;
	width:100%;
	display:flex;
	justify-content:center;
	align-items:center;
	padding:0px 0px;
	background-color:rgba(50,110,200,0.8);
	color:#ffffff;
	font-family:HiraKakuProN-W3,"ヒラギノ角ゴ Pro W3";
	font-size:20px;
	position:fixed;
	z-index:10;
	}

/* ここから下がハンバーガーメニューに関するCSS */
  
/* チェックボックスを非表示にする */
.drawer_hidden{
	display:none;
	}

/* ハンバーガーアイコンの設置スペース */
.drawer_open{
	display:flex;
	justify-content:center;
	align-items:center;
	position:absolute;
	right:30px;
	z-index:11;/* 重なり順を一番上にする */
	cursor:pointer;
	}

/* ハンバーガーメニューのアイコン */
.drawer_open span,
.drawer_open span:before,
.drawer_open span:after{
	content: '';
	display:block;
	height:3px;
	width:30px;
	border-radius:5px;
	background:#ffffff;
	transition:0.5s;
	position:absolute;
	}

/* 三本線の一番上の棒の位置調整 */
.drawer_open span:before{
  bottom: 8px;
}

/* 三本線の一番下の棒の位置調整 */
.drawer_open span:after{
  top: 8px;
}

/* アイコンがクリックされたら真ん中の線を透明にする */
#drawer_input:checked ~ .drawer_open span{
  background: rgba(255, 255, 255, 0);
}

/* アイコンがクリックされたらアイコンが×印になように上下の線を回転 */
#drawer_input:checked ~ .drawer_open span::before {
  bottom: 0;
  transform: rotate(45deg);
}

#drawer_input:checked ~ .drawer_open span::after {
  top: 0;
  transform: rotate(-45deg);
}

/* 右から表示 ------------*/
.nav_content {
	width: 70%;
	height: 100%;
	position: fixed;
	top:0%;
	left:100%; /* メニューを画面の外に飛ばす */
	z-index:10;
	background-color:rgba(50,110,200,0.8);
	transition: .5s;
	text-align: center;
	padding-top: 20px;
	}

ul.nav_list{
	margin:50px 20px 0px 20px;
	list-style:none;
	}

ul.nav_list li{
	margin:0px 10px 5px 0px;
	list-style:none;
	font-size:20px;
	line-height:30px;
	text-align:left;
	}

ul.nav_list li a{
	display:block;
	background-color:rgba(0,0,50,0.5);
	color:#ffffff;
	font-family:HiraKakuProN-W3,"ヒラギノ角ゴ Pro W3";
	padding:5px 0px 5px 10px;
	text-decoration:none;
}

p.back_btn input{
	margin:10px auto 10px auto;
	padding:8px 10px 15px 10px;
	width:200px;
	height:40px;
	border-radius:10px;
	background-color:rgba(0,0,50,0.5);
	color:#ffffff;
	line-height:20px;
	font-size:18px;
	font-weight:normal;
	font-family:HiraKakuProN-W6,"ヒラギノ角ゴ Pro W6";
	text-align:center;
	}


/* 右から表示 ------------*/
#drawer_input:checked ~ .nav_content{
	left:30%;
	}

body{
	background-color:#ffffff;
	margin:60px 0px 0px 0px;
	height:100%;
	line-height:22px;
	font-size:14px;
	font-weight:normal;
	font-family:HiraKakuProN-W3,"ヒラギノ角ゴ Pro W3";
	color:#000000;
	}

a{text-decoration:none;}



.inner{
	margin:0px 20px 10px 20px;
	padding:0px 0px 0px 0px;
	}


footer#smp{
	clear:both;
	width:100%;
	height:60px;
	margin:0px;
	padding:15px 0px 15px 0px;
	background-color:#ffffff;
	}

footer#smp .copyright{
	margin:10px auto;
	font-size:14px;
	font-weight:normal;
	font-family:sans-serif;
	line-height:22px;
	color:#222222;
	text-align:center;
	}


/*-------------------------------------------------------*/
/* PageTop (2026-05-07 update) */
/*-------------------------------------------------------*/

#pageTop {
	background: transparent;
	border: none;
	outline: none;
	appearance: none;
	position: fixed;
	bottom: 20px;
	right: 0px;

	width: 70px;
	height: 70px;
	padding: 0;
	border: none;
	background: none;
	cursor: pointer;

	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s, visibility 0.8s;

	z-index: 999;
	}

#pageTop.show {
	opacity: 0.8;
	visibility: visible;
	transition: opacity 0.5s;
	}

#pageTop:hover {
	opacity: 1;
	}

#pageTop img {
	width: 100%;
	height: 100%;
	display: block;
	background:transparent; !Important
	}


/* SNS (2026-07-05 update) */

ul.sns_link{
	margin:30px auto 10px auto;
	list-style:none;
	text-align:center;
	}

ul.sns_link li{
	width:40px;
	height:40px;
	margin:0px 0px 5px 10px;
	padding:0px;
	float:left;
	}

ul.sns_link li img{
	width:40px;
	height:40px;
	}

ul.sns_link li a{
	margin:0px 0px 0px 0px;
	padding:5px 0px 5px 5px;
	text-decoration:none;
	}



/*------------------------------------------------------*/
/* 本文 */
/*------------------------------------------------------*/

.wrapper{
	margin:0px auto 10px auto;
	padding:0px 0px 50px 0px;
	text-align:left;
	border-bottom:1px dotted #999999;
	}


.wrapper .panel,
.wrapper .news_movie{
/*	width:95%;*/
	margin:10px 10px 10px 10px;
	padding:10px 0px 0px 0px;
	background-color:#eeeeee;
	}


.main_image{
	width:100%;
	}

.main_image img{
	width:100%;
	}


h2.oa_date{
	width:100%;
	margin:10px auto 10px auto;
	padding:10px 0px;
	font-family:HiraKakuProN-W6,"ヒラギノ角ゴ Pro W6";
	font-size:22px;
	font-weight:bold;
	line-height:34px;
	color:#333333;
	text-align:center;
	}


h2.main_title{
	width:100%;
	margin:10px auto 10px auto;
	padding:10px 0px;
	font-family:HiraKakuProN-W6,"ヒラギノ角ゴ Pro W6";
	font-size:22px;
	font-weight:bold;
	line-height:30px;
	background-color:#555555;
	color:#ffffff;
	text-align:center;
	}

h2.section_title{
/*	width:100%;*/
	margin:0px 10px 10px 10px;
	padding:10px;
	text-align:center;
	line-height:26px;
	font-size:18px;
	font-family:HiraKakuProN-W6,"ヒラギノ角ゴ Pro W6";
	background-color:#78c6b6;
	border-radius:6px;
	color:#000000;
	}

h3{
	width:100%;
	text-align:center;
	}

h3 a:link,
h3 a:visited{
	width:300px;
	margin:30px auto 30px auto;
	padding:8px 30px 12px 30px;
	font-family:HiraKakuProN-W6,"ヒラギノ角ゴ Pro W6";
	font-size:22px;
	font-weight:bold;
	line-height:35px;
	background-color:#5555aa;
	color:#ffffff;
	text-align:center;
	border-radius:6px;
	text-decoration:none;
	}
h3 a:hover,
h3 a:active{
	background-color:#aa5555;
	}

dl.main_copy{
	margin:10px 10px 30px 10px;
	}

dl.main_copy dt.title{
	margin:0px 0px 10px 0px;
	padding:0px 0px 0px 10px;
	font-size:20px;
	font-family:HiraKakuProN-W6,"ヒラギノ角ゴ Pro W6";
	font-weight:600;
	line-height:30px;
	color:#000000;
	}

dl.main_copy dt.mid_title{
	margin:0px 0px 10px 0px;
	padding:10px;
	font-size:18px;
	font-family:HiraKakuProN-W6,"ヒラギノ角ゴ Pro W6";
	font-weight:600;
	line-height:30px;
	color:#6c8cc8;
	border-top:1px solid #6c8cc8;
	}

dl.main_copy dd{
	margin:10px 0px 20px 0px;
	padding:0px;
	font-size:15px;
	font-family:HiraKakuProN-W3,"ヒラギノ角ゴ Pro W3";
	font-weight:normal;
	line-height:24px;
	color:#555555;
	}

dl.main_copy dd.cast{
	margin:-45px 0px 20px 80px;
	padding:0px;
	font-size:15px;
	font-family:HiraKakuProN-W3,"ヒラギノ角ゴ Pro W3";
	font-weight:normal;
	line-height:22px;
	color:#555555;
	}


dl.recommend{
	margin:10px 10px 40px 10px;
	border:2px solid #ee5500;
	border-radius:10px;
	}

dl.recommend dt.topline{
	margin:0px 0px 10px 0px;
	padding:5px 0px 5px 10px;
	font-size:18px;
	font-family:HiraKakuProN-W6,"ヒラギノ角ゴ Pro W6";
	font-weight:600;
	line-height:24px;
	background-color:#ee5500;
	color:#ffffff;
	text-align:center;
	border-radius:8px 8px 0px 0px;
	}

dl.recommend dt.next_date{
	margin:0px 0px 10px 0px;
	padding:10px;
	font-size:18px;
	font-family:HiraKakuProN-W6,"ヒラギノ角ゴ Pro W6";
	font-weight:600;
	line-height:30px;
	color:#ee5500;
	}

dl.recommend dd.next_memo{
	margin:0px 20px 20px 20px;
	padding:0px;
	font-size:15px;
	font-family:HiraKakuProN-W3,"ヒラギノ角ゴ Pro W3";
	font-weight:normal;
	line-height:22px;
	color:#000000;
	}


/* リンクリスト ----------------------------------------*/

ul.series_link{
	margin:10px auto 10px auto;
	list-style:none;
	}

ul.series_link li{
	width:250px;
	margin:0px 0px 10px 10px;
	padding:0px 0px 0px 0px;
	}

ul.series_link li a{
	margin:0px 0px 0px 0px;
	padding:5px 0px 5px 20px;
	display:block;
	background:#555577;
	border-radius:6px 6px 6px 6px;
	color:#ffffff;
	font-size:16px;
	font-family:HiraKakuProN-W3,"ヒラギノ角ゴ Pro W3";
	font-weight:normal;
	line-height:24px;
	text-decoration:none;
	transition: all .3s;
	-webkit-transition: all .3s;
	}


ul.link{
	margin:10px 10px 10px 10px;
	padding:0px 0px 0px 0px;
	}

ul.link li{
	margin:5px 0px 5px 0px;
	padding:0px;
	list-style-type:none;
	text-align:left;
	}

ul.link li a:link,
ul.link li a:visited{
	margin:5px;
	padding:10px 10px 10px 20px;
	list-style-type:none;
	line-height:22px;
	font-size:16px;
	font-family:HiraKakuProN-W3,"ヒラギノ角ゴ Pro W3";
	color:#000000;
	text-align:left;
	background-color:#ffffff;
	border-radius:8px;
	display:block;
	background-image:url("../images/icon/arrow_link.png");
	background-position:right center;
	background-repeat:no-repeat;
	background-size:25px 25px;
	}

ul.link li a:hover,
ul.link li a:active{
	color:#dd0000;
	}

ul.news_movie{
	width:300px;
	margin:0px auto 0px auto;
	padding:0px 0px 0px 0px;
	list-style-type:none;
	text-align:center;
	}

ul.news_movie li{
	width:300px;
	height:280px;
	margin:10px auto 15px auto;
	padding:0px 0px 0px 0px;
	list-style-type:none;
/*	float:left;*/
	background-color:#ffffff;
	overflow:hidden;
	text-overflow:ellipsis;
	}

ul.news_movie li .news_date{
	margin:0px 0px 0px 0px;
	padding:10px 0px 10px 10px;
	line-height:22px;
	font-size:16px;
	font-family:HiraKakuProN-W3,"ヒラギノ角ゴ Pro W3";
	color:#dd0000;
	text-align:left;
	}

ul.news_movie li img{
	margin:0px;
	padding:0px;
	width:300px;
	}

ul.news_movie li .news_title{
	width:285px;
	height:80px;
	margin:0px 0px 0px 5px;
	padding:0px 5px 5px 5px;
	line-height:20px;
	font-size:14px;
	font-family:HiraKakuProN-W3,"ヒラギノ角ゴ Pro W3";
	color:#555555;
	overflow:hidden;
	text-overflow:ellipsis;
	text-align:left;
	}



/* イメージスライダー ------------------------------------*/

.img-slider{
	position:relative;
	width:300px;
	margin:10px auto 20px auto;
	}

/* スライダーパネル */
.slider-track{
	position:relative;
	width:300px;
	height:180px;
	}

.slide{
	position:absolute;
	inset:0;
	opacity:0;
	visibility:hidden;
	transition:
		opacity .4s ease,
		visibility .4s ease;
	}

.slide.active{
	opacity:1;
	visibility:visible;
	z-index:2;
	}

.slide img{
	width:100%;
	height:100%;
	object-fit:cover;
	display:block;
	}

/* Arrowボタン */

.slider-prev,
.slider-next{
	position:absolute;
	top:50%;
	transform:translateY(-50%);
	width:30px;
	height:30px;
	border:none;
	border-radius:50%;
	background:rgba(255,255,255,0.6);
	cursor:pointer;
	z-index:10;
	font-size:18px;
	transition:0.3s;
	}

.slider-prev:hover,
.slider-next:hover{
	background:rgba(255,255,255,0.9);
	}

.slider-prev{
	left:15px;
	}

.slider-next{
	right:15px;
	}

/* インジケータードット */

.slider-dots{
	position:absolute;
	left:50%;
	bottom:15px;
	transform:translateX(-50%);
	display:flex;
	gap:10px;
	z-index:10;
	}

.slider-dot{
	width:12px;
	height:12px;
	border-radius:50%;
	border:none;
	background:rgba(255,255,255,0.5);
	cursor:pointer;
	}

.slider-dot.active{
	background:#dddddd;
	}


/* 回り込みの解除 -----------------------------------*/

.clearfix:after{
	content:"";
	display:block;
	clear:both;
	}
.clearfix:before{
	content:"";
	display:block;
	clear:both;
	}
.clearfix{
	display:block;
	}

/*
	font-family:HiraKakuProN-W3,"ヒラギノ角ゴ Pro W3";
	font-family:HiraKakuProN-W6,"ヒラギノ角ゴ Pro W6";
*/


}


/*==================================================================================*/
/* PC用の設定 */
/* 2026-08-24 update */
/*==================================================================================*/

/*@media screen and (min-width:521px){*/
@media screen and (min-width:601px){

	.smp{display:none;}
	#smp{display:none;}
	.pc{display:inline;}
	#pc{display:block;}

body{
	margin:0;
	background-color:#ffffff;
	line-height:28px;
	font-size:20px;
	font-weight:normal;
	font-family: "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ ProNW6", "Hiragino Kaku Gothic ProN",system-ui, sans-serif;
	font-weight:400;
	color:#000000;
background-image:url("../images/bg.jpg");
background-position:center 170px;
background-repeat:no-repeat;
background-attachment:fixed;
	}

header#pc{
	width:978px;
	height:160px;
	margin:0px auto 0px auto;
	padding:0px 0px 0px 0px;
	background-color:#ffffff;
	position:static;
	}

#breadcrumbs{
	width:978px;
	margin:10px auto 3px auto;
	padding:10px 0px 0px 20px;
	font-size:14px;
	line-height:14px;
	font-weight:normal;
	color:#000000;
	font-family:"メイリオ","Meiryo","Hiragino Kaku Gothic Pro","ヒラギノ角ゴ Pro W3","ＭＳ Ｐゴシック",sans-serif;
	}

	a:link{   text-decoration:none;       color:#991100;}
	a:visited{text-decoration:none;       color:#007700;}
	a:hover{  text-decoration:underline;  color:#ee0000;}
	a:focus  {text-decoration:underline;  color:#ee0000;}
	a:active{ text-decoration:none;       color:#ff0000;}

.wrapper{
	margin:10px auto 10px auto;
	padding:0px 0px 30px 0px;
	width:978px;
	text-align:left;
	border-bottom:1px dotted #999999;
	}


#page_bottom{
	margin:-5px auto -5px auto;
	padding:0px 0px 0px 0px;
	width:978px;
	height:65px;
	}

footer#pc{
	clear:both;
	width:100%;
	margin:10px auto 10px auto;
	padding:0px 0px 20px 0px;
	background-color:#ffffff;
	}


/*
	font-family:"游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
	font-family: "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ ProNW6", "Hiragino Kaku Gothic ProN",system-ui, sans-serif;
*/


/* SNS ------------------------------*/

ul.sns_link{
	position:fixed;
	top:200px;
	right:0px;
	list-style:none;
	}

ul.sns_link li{
	width:100px;
	height:50px;
	margin:0px 0px 10px 0px;
	padding:0px 0px 0px 0px;
	}

ul.sns_link li img{
	width:50px;
	height:50px;
	margin:0px 0px 0px 0px;
	padding:0px 0px 0px 0px;
	}

ul.sns_link li a:link,
ul.sns_link li a:visited{
	margin:0px 0px 0px 40px;
	padding:5px 0px 0px 5px;
	display:block;
	background:#aacccc;
	border-radius:30px 0px 0px 30px;
	text-decoration:none;
	transition: all .3s;
	-webkit-transition: all .3s;
	}

ul.sns_link li a:hover,
ul.sns_link li a:active{
	margin:0px 0px 5px 0px;
	background:#99ffff;
	transition: all .3s;
	-webkit-transition: all .3s;
	}



/*------------------------------------------------------*/
/* 本文 */
/*------------------------------------------------------*/

h2.oa_date{
	width:978px;
	margin:10px auto 10px auto;
	padding:10px 0px;
	font-family: "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ ProNW6", "Hiragino Kaku Gothic ProN",system-ui, sans-serif;
	font-size:30px;
	font-weight:bold;
	line-height:40px;
	color:#333333;
	text-align:center;
	}

h2.main_title{
	width:978px;
	margin:20px auto 20px auto;
	padding:10px 0px;
	font-family: "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ ProNW6", "Hiragino Kaku Gothic ProN",system-ui, sans-serif;
	font-size:24px;
	font-weight:bold;
	line-height:30px;
	background-color:#555555;
	color:#ffffff;
	text-align:center;
	border-radius:6px;
	}

h2.section_title{
	width:850px;
	margin:10px auto 10px auto;
	padding:10px;
	text-align:center;
	line-height:26px;
	font-size:22px;
	font-family:"メイリオ","Meiryo","Hiragino Kaku Gothic Pro","ヒラギノ角ゴ Pro W6","ＭＳ Ｐゴシック",sans-serif;
/*	font-family:HiraKakuProN-W6,"ヒラギノ角ゴ Pro W6";*/
	background-color:#78c6b6;
	border-radius:20px;
	color:#000000;
	}

h3 a:link,
h3 a:visited{
	width:400px;
	margin:30px auto 30px 360px;
	padding:10px 50px;
	font-family: "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ ProNW6", "Hiragino Kaku Gothic ProN",system-ui, sans-serif;
	font-size:22px;
	font-weight:bold;
	line-height:30px;
	background-color:#5555aa;
	color:#ffffff;
	text-align:center;
	border-radius:6px;
	text-decoration:none;
	transition: all .3s;
	-webkit-transition: all .3s;
	}

h3 a:hover,
h3 a:active{
	background-color:#aa5555;
	transition: all .3s;
	-webkit-transition: all .3s;
	}

dl.main_copy{
	width:960px;
	margin:10px 20px 30px 20px;
	}

dl.main_copy dt.title{
	margin:0px 0px 10px 0px;
	padding:0px;
	font-size:24px;
	font-family: "メイリオ", "ヒラギノ角ゴ ProNW6", "Hiragino Kaku Gothic ProN",system-ui, sans-serif;
	font-weight:600;
	line-height:30px;
	color:#000000;
	}

dl.main_copy dt.mid_title{
	margin:0px 0px 10px 0px;
	padding:20px;
	font-size:18px;
	font-family: "メイリオ", "ヒラギノ角ゴ ProNW6", "Hiragino Kaku Gothic ProN",system-ui, sans-serif;
	font-weight:600;
	line-height:30px;
	color:#6c8cc8;
	border-top:1px solid #6c8cc8;
	}

dl.main_copy dd{
/*	margin:10px 0px 20px 50px;*/
	margin:10px 0px 20px 0px;
	padding:0px;
	font-size:20px;
	font-family: "メイリオ", "ヒラギノ角ゴ ProNW3", "Hiragino Kaku Gothic ProN",system-ui, sans-serif;
	font-weight:normal;
	line-height:32px;
	color:#555555;
	}

dl.main_copy dd.cast{
	margin:-60px 0px 20px 120px;
	padding:0px;
	font-size:16px;
	font-family: "メイリオ", "ヒラギノ角ゴ ProNW3", "Hiragino Kaku Gothic ProN",system-ui, sans-serif;
	font-weight:normal;
	line-height:24px;
	color:#555555;
	}


dl.recommend{
	width:850px;
	margin:10px auto 50px auto;
	border:2px solid #ee5500;
	border-radius:10px;
	}

dl.recommend dt.topline{
	margin:0px 0px 10px 0px;
	padding:5px 0px 5px 0px;
	font-size:20px;
	font-family: "メイリオ", "ヒラギノ角ゴ ProNW6", "Hiragino Kaku Gothic ProN",system-ui, sans-serif;
	font-weight:600;
	line-height:30px;
	background-color:#ee5500;
	color:#ffffff;
	text-align:center;
	border-radius:8px 8px 0px 0px;
	}

dl.recommend dt.next_date{
	margin:0px 0px 0px 10px;
	padding:10px;
	font-size:18px;
	font-family:HiraKakuProN-W6,"ヒラギノ角ゴ Pro W6";
	font-weight:600;
	line-height:30px;
	color:#ee5500;
	}

dl.recommend dd.next_memo{
	margin:0px 30px 20px 30px;
	padding:0px;
	font-size:16px;
	font-family:HiraKakuProN-W3,"ヒラギノ角ゴ Pro W3";
	font-weight:normal;
	line-height:24px;
	color:#555555;
	}


	.wrapper .panel,
	.wrapper .news_movie{
		width:960px;
		margin:10px auto 10px auto;
		padding:10px 0px 10px 0px;
		background-color:#eeeeee;
		border-radius:8px;
		}



/* リンクリスト ----------------------------------------*/

ul.series_link{
	margin:30px auto 0px auto;
	list-style:none;
	}

ul.series_link li{
	width:250px;
	height:50px;
	margin:0px 0px 10px 10px;
	padding:0px 0px 0px 0px;
	float:left;
	}

ul.series_link li a:link,
ul.series_link li a:visited{
	margin:0px 0px 0px 0px;
	padding:7px 0px 5px 15px;
	display:block;
	background:#555577;
	border-radius:6px 6px 6px 6px;
	color:#ffffff;
	font-size:18px;
	line-height:24px;
	text-decoration:none;
	transition: all .3s;
	-webkit-transition: all .3s;
	}

ul.series_link li a:hover,
ul.series_link li a:active{
	background:#339999;
	transition: all .3s;
	-webkit-transition: all .3s;
	}


ul.link{
	width:830px;
	margin:10px 10px 10px 60px;
	padding:0px 0px 0px 0px;
	}

ul.link li{
	margin:5px 0px 5px 0px;
	padding:0px;
	list-style-type:none;
	text-align:left;
	display:block;
	}

ul.link li a:link,
ul.link li a:visited{
	margin:5px 5px 5px 5px;
	padding:10px 20px 10px 30px;
	list-style-type:none;
	line-height:22px;
	font-size:16px;
	font-family:"メイリオ","Meiryo","Hiragino Kaku Gothic Pro","ヒラギノ角ゴ Pro W3","ＭＳ Ｐゴシック",sans-serif;
/*	font-family:HiraKakuProN-W3,"ヒラギノ角ゴ Pro W3";*/
	color:#000000;
	text-align:left;
	border-radius:20px;
	background-color:#ffffff;
	background-image:url("../images/icon/arrow_link.png");
	background-position:right center;
	background-repeat:no-repeat;
	background-size:30px 30px;
	display:block;
	border:1px solid #cccccc;
	-webkit-transition: all .3s;
	transition: all .3s;
	}

ul.link li a:hover,
ul.link li a:active{
	margin:5px 5px 5px 35px;
	color:#dd0000;
	display:block;
	-webkit-transition: all .3s;
	transition: all .3s;
	}


ul.news_movie{
	width:960px;
	margin:0px 0px 0px 0px;
	padding:0px 0px 0px 0px;
	list-style-type:none;
	}

ul.news_movie li{
	width:300px;
	height:280px;
	margin:10px 10px 10px 10px;
	padding:0px 0px 0px 0px;
	list-style-type:none;
	float:left;
	background-color:#ffffff;
/*	overflow:hidden;*/
/*	text-overflow:ellipsis;*/
	}

ul.news_movie li a{
	text-decoration:none;
	border:none;
	}

ul.news_movie li .news_date{
	margin:0px 0px 0px 0px;
	padding:10px 0px 10px 10px;
	line-height:22px;
	font-size:16px;
	font-family:"メイリオ","Meiryo","Hiragino Kaku Gothic Pro","ヒラギノ角ゴ Pro W3","ＭＳ Ｐゴシック",sans-serif;
/*	font-family:HiraKakuProN-W3,"ヒラギノ角ゴ Pro W3";*/
	color:#dd0000;
	}

ul.news_movie li img{
	margin:0px;
	padding:0px;
	width:300px;
	}

ul.news_movie li .news_title{
	width:285px;
	height:80px;
	margin:0px 0px 0px 5px;
	padding:0px 5px 5px 5px;
	line-height:20px;
	font-size:14px;
	font-family:"メイリオ","Meiryo","Hiragino Kaku Gothic Pro","ヒラギノ角ゴ Pro W3","ＭＳ Ｐゴシック",sans-serif;
/*	font-family:HiraKakuProN-W3,"ヒラギノ角ゴ Pro W3";*/
	color:#555555;
	overflow:hidden;
	text-overflow:ellipsis;
	}



/* イメージスライダー ------------------------------------*/

.img-slider{
	position:relative;
	width:400px;
	margin:0px 5px 10px 20px;
	float:right;
	}

/* スライダーパネル */
.slider-track{
	position:relative;
	width:400px;
	height:240px;
	}

.slide{
	position:absolute;
	inset:0;
	opacity:0;
	visibility:hidden;
	transition:
		opacity .4s ease,
		visibility .4s ease;
	}

.slide.active{
	opacity:1;
	visibility:visible;
	z-index:2;
	}

.slide img{
	width:100%;
	height:100%;
	object-fit:cover;
	display:block;
	}

/* Arrowボタン */

.slider-prev,
.slider-next{
	position:absolute;
	top:50%;
	transform:translateY(-50%);
	width:30px;
	height:30px;
	border:none;
	border-radius:50%;
	background:rgba(255,255,255,0.6);
	cursor:pointer;
	z-index:10;
	font-size:18px;
	transition:0.3s;
	}

.slider-prev:hover,
.slider-next:hover{
	background:rgba(255,255,255,0.9);
	}

.slider-prev{
	left:15px;
	}

.slider-next{
	right:15px;
	}

/* インジケータードット */

.slider-dots{
	position:absolute;
	left:50%;
	bottom:15px;
	transform:translateX(-50%);
	display:flex;
	gap:10px;
	z-index:10;
	}

.slider-dot{
	width:12px;
	height:12px;
	border-radius:50%;
	border:none;
	background:rgba(255,255,255,0.5);
	cursor:pointer;
	}

.slider-dot.active{
	background:#dddddd;
	}


/* 回り込みの解除 -----------------------------------*/

.clearfix:after{
	content:"";
	display:block;
	clear:both;
	}
.clearfix:before{
	content:"";
	display:block;
	clear:both;
	}
.clearfix{
	display:block;
	}

}
