@charset "UTF-8";
body {
	width: 100%;
	-webkit-text-size-adjust: 100%;
	
	overflow: hidden;
	position: relative;
}
#header {
	z-index: 1000;
	width: 100%;
	float:left;
	position: fixed;
	top: 0;
	left: 0;
	background: transparent url('../images/bg__opacity90.png');
	-webkit-transform: translateZ(0);
}
header h1 {
	display: inline;
}
header h1 img {
	margin-top: 10px;
}
#hederwrapper {
	width: 950px;
	margin: auto;
	overflow: hidden;
	height: 70px;
}
section {
	clear: both;
	/*min-height: 300px;*/
	text-align: center;
}
.wbox {
	background-color: #fff;
	border-radius: 10px;
	width: 950px;
	margin: auto;
}
.nbox {
	width: 950px;
	margin: auto;
}
.trbox {
	border-radius: 10px;
	width: 950px;
	margin: auto;
	padding-top: 60px;
	overflow: auto;
	overflow: hidden;
}
.button {
	display: inline-block;
 *display: inline;
	zoom: 1;
	padding: 0.4em 4em;
	border-radius: 8px;
	background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, .5)), to(rgba(160, 160, 160, .5)));
	background: linear-gradient(to bottom, rgba(255, 51, 51, .5), rgba(164, 0, 0, .5));
	background-color: rgb(102, 0, 0);
	-webkit-transition: background-color .4s;
	transition: background-color .4s;
	margin: 1em 0 0 0;
	cursor: pointer;
}
.button:hover {
	background-color: rgb(255, 51, 51);
}
.button a {
	width: 100%;
	color: #fff;
	text-decoration: none;
}

.clearfix:before,  .clearfix:after {
	content: '\0020';
	display: block;
	overflow: hidden;
	visibility: hidden;
	width: 0;
	height: 0;
}
.clearfix:after {
	clear: both;
}
.clearfix {
	zoom: 1;
}


/* ------------------------------------------------- *
 *        Slick
 * ------------------------------------------------- */

.slick-slider {
	position: relative;
	display: block;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-ms-touch-action: pan-y;
	touch-action: pan-y;
	-webkit-tap-highlight-color: transparent;
}
.slick-list {
	position: relative;
	overflow: hidden;
	display: block;
	margin: 0;
	padding: 0;
}
.slick-list:focus {
	outline: none;
}
.slick-loading .slick-list {
	background: #fff url("./ajax-loader.gif") center center no-repeat;
}
.slick-list.dragging {
	cursor: pointer;
	cursor: hand;
}
.slick-slider .slick-track {
	-webkit-transform: translate3d(0, 0, 0);
	-moz-transform: translate3d(0, 0, 0);
	-ms-transform: translate3d(0, 0, 0);
	-o-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}
.slick-track {
	position: relative;
	left: 0;
	top: 0;
	display: block;
}
.slick-track:before, .slick-track:after {
	content: "";
	display: table;
}
.slick-track:after {
	clear: both;
}
.slick-loading .slick-track {
	visibility: hidden;
}
.slick-slide {
	float: left;
	height: 100%;
	min-height: 1px;
	display: none;
}
[dir="rtl"] .slick-slide {
	float: right;
}
.slick-slide img {
	display: block;
}
.slick-slide.slick-loading img {
	display: none;
}
.slick-slide.dragging img {
	pointer-events: none;
}
.slick-initialized .slick-slide {
	display: block;
}
.slick-loading .slick-slide {
	visibility: hidden;
}
.slick-vertical .slick-slide {
	display: block;
	height: auto;
	border: 1px solid transparent;
}
/* Icons */
@font-face {
	font-family: "slick";
	src: url("./fonts/slick.eot");
	src: url("./fonts/slick.eot?#iefix") format("embedded-opentype"), url("./fonts/slick.woff") format("woff"), url("./fonts/slick.ttf") format("truetype"), url("./fonts/slick.svg#slick") format("svg");
	font-weight: normal;
	font-style: normal;
}
/* Arrows */
.slick-prev, .slick-next {
	position: absolute;
	display: block;
	height: 20px;
	width: 20px;
	line-height: 0;
	font-size: 0;
	cursor: pointer;
	background: transparent;
	color: transparent;
	top: 50%;
	margin-top: -10px;
	padding: 0;
	border: none;
	outline: none;
}
.slick-prev:hover, .slick-prev:focus, .slick-next:hover, .slick-next:focus {
	outline: none;
	background: transparent;
	color: transparent;
}
.slick-prev:hover:before, .slick-prev:focus:before, .slick-next:hover:before, .slick-next:focus:before {
	opacity: 1;
}
.slick-prev.slick-disabled:before, .slick-next.slick-disabled:before {
	opacity: 0.25;
}
.slick-prev:before, .slick-next:before {
	font-family: "slick";
	font-size: 20px;
	line-height: 1;
	color: #910000;
	opacity: 0.75;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
.slick-prev {
	left: -25px;
}
[dir="rtl"] .slick-prev {
	left: auto;
	right: -25px;
}
.slick-prev:before {
	content: "←";
}
[dir="rtl"] .slick-prev:before {
	content: "→";
}
.slick-next {
	right: -25px;
}
[dir="rtl"] .slick-next {
	left: -25px;
	right: auto;
}
.slick-next:before {
	content: "→";
}
[dir="rtl"] .slick-next:before {
	content: "←";
}
/* ------------------------------------------------- *
 *        top
 * ------------------------------------------------- */

#top {
	height: 510px;
	margin-top: 0px;
	position: relative;
	overflow: hidden;
}
#video-background {
	position: fixed;
	right: 0;
	bottom: 0;
	min-width: 100%;
	min-height: 100%;
	width: auto;
	height: auto;
	z-index: -100;
	background: #fff url('../images/bg_mov.jpg') center center fixed;
	background-size: cover;

	-ms-behavior: url(js/backgroundsize.min.htc);
	behavior: url(js/backgroundsize.min.htc);
}
#top .screen_k {
	width: 100%;
	height: 510px;
	background: transparent url('../images/bg_dot_k.png');
	position: relative;
	top: 0px;
}
#top .topblock {
	position: absolute;
	top: 70px;
	left: 50%;
	color: #fff;
	width: 950px;
	height: 440px;
	margin: 0 0 0 -475px;
	z-index: 10;
}
#top .topblock span {
	display: block;
	white-space: nowrap;
}
#top .topblock h1 {
	margin-top: 0em;
	font-size: 48px;
	line-height: 1.8em;
	text-shadow: #000000 1px 1px 3px;
	-ms-filter:"progid:DXImageTransform.Microsoft.DropShadow(color=#000000,offx=1,offy=1)";
	background: transparent url('../images/h1_icon_crown.png') no-repeat center center;
	height: 196px;
}
#top .topblock h1 span.small {
	font-size: 28px;
	height: 42px;
	line-height: 2em;
	padding-top: 32px;
}
#top .topblock h2 {
	height: 68px;
	margin-top: 1.5em;
	font-size: 24px;
	line-height: 68px;
	text-shadow: #000000 1px 1px 3px;
	-ms-filter:"progid:DXImageTransform.Microsoft.DropShadow(color=#000000,offx=1,offy=1)";
	/*background: transparent url('../images/h2_icon_w.png') no-repeat center center;*/
}
#top .topblock h2 span {
	display: inline;
}
#top .topblock h3 {
	margin-top: 0.5em;
	font-size: 18px;
	line-height: 1.8em;
	text-shadow: #000000 1px 1px 3px;
	-ms-filter:"progid:DXImageTransform.Microsoft.DropShadow(color=#000000,offx=1,offy=1)";
}


/* ------------------------------------------------- *
 *        bodytext
 * ------------------------------------------------- */

#bodytext {
	width: 100%;
	background-color: #770000;
	color: #fff;
	padding: 1.6em 0em;
	line-height: 2em;
}
#bodytext p span {
	display: inline-block;
}

/* ------------------------------------------------- *
 *        winner
 * ------------------------------------------------- */

.winner, .winner2 {
	padding: 60px 0px 20px 0px;
}
.workwrapper {
	width: 950px;
	margin: auto;
	overflow: hidden;
}
.winner header, .winner2 header {
	height: 90px;
	text-align: left;
	
}
.yellow {
	background: #fff url('../images/bg_1.png') repeat-x;
	
}
.orange {
	background: #fff url('../images/bg_2.png') repeat-x;
}
#gold {
	background: transparent url('../images/h1_prize_gold.png') 0px 0px no-repeat;
	background-size: 100%;
	-ms-behavior: url(js/backgroundsize.min.htc);
	behavior: url(js/backgroundsize.min.htc);
}
#silver {
	background: transparent url('../images/h1_prize_silver.png') 0px 0px no-repeat;
	background-size: 100%;
	-ms-behavior: url(js/backgroundsize.min.htc);
	behavior: url(js/backgroundsize.min.htc);
}
#bronze {
	background: transparent url('../images/h1_prize_bronze.png') 0px 0px no-repeat;
	background-size: 100%;
	-ms-behavior: url(js/backgroundsize.min.htc);
	behavior: url(js/backgroundsize.min.htc);
}


#gold h1, #silver h1 {
	font-size: 32px;
	line-height: 230%;
	display: inline-block;
	margin-left: 18%;
}
#bronze h1 {
	font-size: 24px;
	line-height: 300%;
	display: inline-block;
	margin-left: 16%;
}
#gold h3, #silver h3, #bronze h3 {
	font-size: 14px;
	line-height: 86px;
	display: inline-block;
	float: right;
	margin-right: 80px;
	font-weight: normal;
}
.winner .works {
	margin-top: 50px;
	overflow: hidden;
}
.winner .works:first-child {
	clear: both;
}
.winner .workphoto {
	width: 39%;
	float: left;
	margin: 0 5%;
	/*height: 252px;*/
	/*padding: 10px;*/
	background-color: #fff;
	border: 1px solid #ccc;
	box-shadow: 4px 4px 8px rgba(0,0,0,0.4);
	-webkit-box-shadow: 2px 2px 3px rgba(0,0,0,0.4);
	-moz-box-shadow: 2px 2px 3px rgba(0,0,0,0.4);
	-ms-box-shadow:  2px 2px 3px rgba(0,0,0,0.4);
	filter: progid:DXImageTransform.Microsoft.Shadow(color=#aaaaaa, direction=90, strength=5, enabled=true), progid:DXImageTransform.Microsoft.Shadow(color=#aaaaaa, direction=180, strength=5, enabled=true);
}
.winner .workphoto img {
	width: 95%;
	height: auto;
	margin: 10px;
}
.winner .worktext {
	width: 50%;
	float: left;
	color: #000;
	text-align: left;
	margin: 0;
	padding: 0;
}
.winner .worktext h3 {
	font-size: 24px;
	line-height: 1.4em;
	border-bottom: 2px solid #910000;
	color: #910000;
	margin-top: 0.2em;
}
.winner .worktext h4 {
	text-align: right;
	font-weight: normal;
}
.winner .worktext p {
	text-justify: inter-ideograph;
	margin-top: 0.5em;
	height: 9em;
	overflow: hidden;
}
.winner .workfooter {
	display: block;
	height: 50px;
	margin: 230px 0 0 0;
	zoom: 1;
	text-align: right;
	border-radius: 8px;
	background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, .5)), to(rgba(160, 160, 160, .5)));
	background: linear-gradient(to bottom, rgba(255, 51, 51, .5), rgba(164, 0, 0, .5));
	background-color: rgb(102, 0, 0);
}
.workfooter p {
	display: inline-block;
	line-height: 2em;
	margin: 8px 20px 0 0;
	color: #fff;
}

a.eplink:hover .workfooter p {
	color: #FF6666;
}
a.eplink:hover .workphoto img {
	opacity: 0.6;
	filter: alpha(opacity=60);
  -ms-filter: "alpha(opacity=60)";
}
a.eplink:hover .bronzebt p {
	text-decoration: underline;
}


.winner2 .workwrapper {
	
}
.winner2 .works {
	width: 28%;
	float: left;
	margin: 50px 0px 0px 38px;
}
.winner2 .left-margin {
	margin-left: 20%;
}
.winner2 .workphoto {
	width: 98%;
	float: left;
	overflow: auto;
	background-color: #fff;
	margin-bottom: 10px;
	border: 1px solid #ccc;
	box-shadow: 4px 4px 8px rgba(0,0,0,0.4);
	-webkit-box-shadow: 2px 2px 3px rgba(0,0,0,0.4);
	-moz-box-shadow: 2px 2px 3px rgba(0,0,0,0.4);
	-ms-box-shadow:  2px 2px 3px rgba(0,0,0,0.4);
	filter: progid:DXImageTransform.Microsoft.Shadow(color=#aaaaaa, direction=90, strength=5, enabled=true), progid:DXImageTransform.Microsoft.Shadow(color=#aaaaaa, direction=180, strength=5, enabled=true);
}
.winner2 .workphoto img {
	width: 92%;
	height: auto;
	margin: 8px;
}
.winner2 .worktext {
	padding: 0.2em;
}
.winner2 .worktext h3 {
	width: 98%;
	font-size: 16px;
	line-height: 1.4em;
	
	border-bottom: 2px solid #910000;
	color: #910000;
	text-align: left;
	
}
.winner2 .worktext h4 {
	text-align: right;
	font-weight: normal;
	color: #000;
}
.winner2 .bronzebt p a {
	display: block;
	width: 100%;
	height: 100%;
	text-decoration: none;
}
.winner2 .bronzebt p a:hover {
	text-decoration: underline;
}

/* ------------------------------------------------- *
 *        episode
 * ------------------------------------------------- */

#episode {
	overflow: hidden;
	background: #fff url('../images/bg_2.png');
	padding-bottom: 20px;
}
#episode h3 {
	font-size: 24px;
	text-align: center;
	color: #910000;
	white-space: nowrap;
}
#episode h3 img {
	margin: 6% 6% 0px 0px;
}
#episode h3 span {
	display: inline-block;
	margin: 0px 10% 0px 0px;
	padding-top: 3%;
	vertical-align: middle;
}
.content {
	margin: 0px auto 50px auto;
	width: 950px;
}
.content:after {
	clear: both;
	content: "";
	display: table;
}
.slider {
	padding-left: 0px;
}
.slider li {
	padding: 0;
	margin-bottom: 2px;
}
.slider li img {
	width: 92%;
	height: auto;
	border: 3px solid #fff;
	box-shadow: 1px 1px 3px rgba(0,0,0,0.4);
	-webkit-box-shadow: 1px 1px 3px rgba(0,0,0,0.4);
	-moz-box-shadow: 1px 1px 3px rgba(0,0,0,0.4);
	-ms-box-shadow:  1px 1px 3px rgba(0,0,0,0.4);
	filter: progid:DXImageTransform.Microsoft.Shadow(color=#aaaaaa, direction=90, strength=3, enabled=true), progid:DXImageTransform.Microsoft.Shadow(color=#aaaaaa, direction=180, strength=3, enabled=true);
}

/* ------------------------------------------------- *
 *					bosyu
 * ------------------------------------------------- */
 
#bosyu {
	background: #fff url('../images/bg_bosyu.jpg') no-repeat center center fixed;
	background-size: cover;
	z-index: 0;
	padding-bottom: 20px;
	color: #910000;
}
.bosyutx {
	margin-top: 20px;
	padding-bottom: 20px;
	background: transparent url('../images/bg__opacity80.png');
}
.bosyutx h3 {
	margin: 0px 20px;
	font-size: 24px;
	line-height: 3em;
}
.bosyutx h4, .bosyutx h5 {
	margin: 0.5em 20px 0px 20px;
}
.bosyutx p {
	margin: 0.5em 20px 0px 20px;
}
.bosyutx li {
	margin: 0 20px;
}
.bosyutx p small {
	display: block;
	padding: 0;
	font-size: 70%;
}



/* ------------------------------------------------- *
 *        pastepisode
 * ------------------------------------------------- */
 
#pastepisode {
	overflow: hidden;
	height: 560px;
	background: #fff url('../images/bg_1.png');
}
#pastepisode h3 {
	width: 15em;
	color: #910000;
	font-size: 24px;
	background: transparent url('../images/h3_icon.png') no-repeat 0px -2px;
	line-height: 1.5em;
	text-indent: 2.2em;
	text-align: left;
	margin: auto;
}
.ytlink img {
	width: 100%;
	height: auto;
}
#pastepisode .pastep {
	margin-top: 70px;
}
#pastepisode .pastep li {
	width: 50%;
	float: left;
	overflow: hidden;
}
#pastepisode .pastep li .ytlink {
	width: 40%;
	float: left;
	overflow: auto;
}
#pastepisode .pastep li h4 {
	float: left;
	display: inline-block;
	text-align: left;
	color: #910000;
	margin: 1em 0 0 1em;
	;
}
#pastepisode .pastep li h4 span {
	display: block;
}
#pastepisode .pastep li h4 .mvtt {
	font-size: 140%;
}
#pastepisode .cmepi {
	width: 50%;
	float: left;
	background-color: #910000;
	border-radius: 10px;
	color: #fff;
	text-align: left;
	margin-top: 90px;
}
#pastepisode .cmepi .ytlink {
	width: 32%;
	float: left;
	margin: 1.5em 0.5em 1.5em 1.5em;
}
#pastepisode .cmepi h4 {
	margin-top: 1.5em;
}
#pastepisode .cmepi a {
	color: #fff;
	text-decoration: none;
	-webkit-transition: all .4s;
	transition: all .4s;
}
#pastepisode .cmepi a:hover {
	color: #FF9999;
}

#pastepisode .cmepi .cmgr {
	font-size: 90%;
	display: block;
}
#pastepisode .cmepi .cmtt {
	font-size: 140%;
	display: block;
}
#pastepisode .awardlink {
	margin-top: 90px;
	text-align: right;
}
#pastepisode .awardlink .button {
	padding: 0;
	margin: 0 0 1.1em 0;
	text-align: left;
	padding: 0 2em;
}
#pastepisode .awardlink .button a {
	display: block;
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 1em 1em;
	background: transparent url('../images/bt_arrow_right.png') no-repeat right 0.5em;
}
#pastepisode .ytlink a {
	-webkit-transition: all .4s;
	transition: all .4s;
}
#pastepisode .ytlink a:hover {
	filter: alpha( opacity=80 );
	-ms-filter: "alpha(opacity=80)";
	opacity: 0.8;
}
#pastepisode a .ytlink {
	-webkit-transition: all .4s;
	transition: all .4s;
}
#pastepisode a:hover .ytlink {
	filter: alpha( opacity=80 );
	-ms-filter: "alpha(opacity=80)";
	opacity: 0.8;
}

/* ------------------------------------------------- *
 *        rules
 * ------------------------------------------------- */
 
.rule {
	margin-bottom: 40px;
}

#rules {
	display: none;
}

#guideline {
	padding: 2em;
	background-color: #fff;
	line-height: 1.5em;
	font-size: 13px;
}
#guideline p {
	font-size: 13px;
}
#guideline h2 {
	font-size: 28px;
	color: #910000;
	padding-left: 1.7em;
	background: transparent url('../images/h3_icon.png') 0 0 no-repeat;
	line-height: 1.5em;
}
#guideline h3 {
	font-size: 22px;
	color: #910000;
	margin: 1em 0;
}
#guideline h4 {
	font-size: 16px;
	color: #910000;
	line-height: 3em;
	margin-top: 1em;
}
#guideline hr {
	border: dotted 1px #910000;
	margin: 2em 0;
	width: 50%;
}
#guideline .square {
}
#guideline .disc li {
	margin-left: 2em;
	list-style-type: disc;
	list-style-position: outside;
}
#guideline li.circle {
	margin-left: 1em;
	list-style-type: circle;
	list-style-position: outside;
}
/* ------------------------------------------------- *
 *        cmnSns
 * ------------------------------------------------- */
.cmnSns {
	height: 20px;
	display: inline;
	float: right;
	z-index: 6;
	margin-top: 29px;
 /margin-top: -20px;
	overflow: hidden;
	
}
.cmnSns a:hover {
	filter: alpha(opacity=70);
	opacity:0.7;
}
.cmnSns__btnFacebook {
	width: 110px;
	overflow: hidden;
	float: right;
	margin-right: 5px;
}
.is-imgBtn .cmnSns__btnFacebook {
	width: auto;
	overflow: visible;
}
.cmnSns__btnTwitter {
	width: 105px;
	float: right;
	overflow: hidden;
	margin-left: 0px;
}
.is-imgBtn .cmnSns__btnTwitter {
	overflow: visible;
	width: auto;
}
.cmnSns__btnGoogle {
	overflow: hidden;
	float: right;
	margin-right: 0px;
}
#scripts {
	height: 0;
	overflow: hidden;
}
/* ------------------------------------------------- *
 *					footer
 * ------------------------------------------------- */
 
footer#contact {
	height: 160px;
	background-color: #700;
	color: #fff;
	text-align: center;
	min-height: 150px;
	line-height: 1.8em;
	overflow: hidden;
}
footer h4 {
	padding-top: 14px;
}
.cmnFooter {
}
.cmnFooter__copy {
	color: #D54B32;
	font-size: 70%;
	padding: 7px 0;
	text-align: center;
	display: block;
	margin-top: 10px;
}
/* ------------------------------------------------- *
					Scroll
 * ------------------------------------------------- */

.pagetop {
	width: 64px;
	height: 64px;
	position: fixed;
	bottom: 13%;
	right: 5%;
	display: none;
	cursor: pointer;
	transition:all 0.3s;
	opacity: 1.0;
	z-index: 500;
}
.pagetop:hover {
	opacity: 0.7;
}
.pagetop img {
	width: 100%;
	height: auto;
}
.scroll {
	
}
.scroll a {
	width: 68px;
	height: 49px;
	display: block;
	cursor: pointer;
	transition:all 0.6s;
	opacity: 1.0;
	z-index: 100;
	margin: 20px auto 0px auto;
}
.scroll a span {
	display: none;
}
.scroll_r {
	background: transparent url('../images/bt_arrow_.png') -68px -50px no-repeat;
}
.scroll_w {
	background: transparent url('../images/bt_arrow_.png') 0px -50px no-repeat;
}
.scroll a:hover {
	opacity: 0.7;
}
#top .scroll {
	position: absolute;
	top: 430px;
	left: 50%;
	margin-left: -34px;
	z-index: 100;
}


/*---------------------------------------------------
    @Styles for Tablet Portrait
---------------------------------------------------*/

@media (max-width: 980px) {
#hederwrapper {
	width: 95%;
}

.workwrapper {
	width: 95%;
	margin: auto;
}

#gold h1, #silver h1 {
	font-size: 28px;
	line-height: 66px;
	margin-left: 18%;
}
#bronze h1 {
	font-size: 18px;
	line-height: 66px;
	margin-left: 18%;
}
#gold h3, #silver h3, #bronze h3 {
	line-height: 70px;
}


#episode h3 {
	font-size: 24px;
	text-align: center;
	color: #910000;
	white-space: nowrap;
}
#episode h3 img {
	margin: 5% 5% 0px 0px;
}
#episode h3 span {
	display: inline-block;
}
#blkEpisode {
	width: 95%;
	font-size: 80%;
}

#top .topblock h4 {
	width: 140px;
	height: 140px;
	background: transparent url('../images/h4_top.png') no-repeat;
	background-size: cover;
	top: -20px;
	left: 10%;
}
#top .topblock .movlink {
	width: 265px;
	top: -10px;
	left: 600px;
}
#maintext h1 {
	margin-bottom: 10px;
}

.wbox {
	width: 90%;
}
.nbox {
	width: 90%;
}
.trbox {
	width: 90%;
}

#pastepisode .cmepi .ytlink {
	width: 30%;
	margin-right: 5px;
}
#pastepisode .cmepi h4 {
	margin-top: 0.5em;
}
#pastepisode .cmepi .cmgr {
	font-size: 80%;
}
#pastepisode .cmepi .cmtt {
	font-size: 100%;
}
#pastepisode .awardlink {
	margin-top: 90px;
	text-align: right;
}
#pastepisode .awardlink .button {
	margin: 0 0 1.1em 0;
	text-align: left;
	padding: 0 2em 0 1.5em;
}
#pastepisode .awardlink .button a {
	font-size: 80%;
	background: transparent url('../images/bt_arrow_right.png') no-repeat right 0.2em;
}
footer {
	font-size: 70%;
}
.content {
	padding: 20px 40px;
	width: auto;
}
}




/*---------------------------------------------------
 	 @Styles for Mobile Landscape to Tablet Portrait
---------------------------------------------------*/

@media (max-width: 768px) {
#hederwrapper {
	width: 90%;
}
#hederwrapper img {
	width: 30%;
	height: auto;
}

#top .topblock h1 {
	margin-top: 0.5em;
	font-size: 42px;
	line-height: 1.8em;
	
	background: transparent url('../images/h1_icon_crown_s.png') no-repeat center center;
	height: 148px;
}
#top .topblock h1 span.small {
	font-size: 21px;
	height: 22px;
	line-height: 1em;
	padding-top: 32px;
	
}
#top .topblock h2 {
	margin-top: 1em;
	line-height: 1.2em;
	
}
#top .topblock h2 span {
	display: block;
}

#top .topblock h4 {
	width: 120px;
	height: 120px;
	background-size: cover;
	top: 20px;
	left: 25%;
}
#top .topblock .movlink {
	width: 265px;
	top: 10px;
	left: 55%;
}

.workwrapper {
	width: 95%;
	margin: auto;
}
.winner header, .winner2 header {
	font-size: 90%;
	background-color: #ccc;
	overflow: hidden;
}
#gold h1, #silver h1 {
	font-size: 24px;
	line-height: 62px;
	width: 100%;
	margin: 0;
	text-align: center;
}
#bronze h1 {
	font-size: 18px;
	line-height: 55px;
	width: 100%;
	margin: 0;
	text-align: center;
}
#gold h3, #silver h3, #bronze h3 {
	clear: both;
	line-height: 2.5em;
	width: 100%;
	margin: 0;
	text-align: center;
}


#gold {
	background: transparent url('../images/h1_prize_s_gold.png') 0px 0px no-repeat;
	background-size: 100%;
	-ms-behavior: url(js/backgroundsize.min.htc);
	behavior: url(js/backgroundsize.min.htc);
}
#silver {
	background: transparent url('../images/h1_prize_s_silver.png') 0px 0px no-repeat;
	background-size: 100%;
	-ms-behavior: url(js/backgroundsize.min.htc);
	behavior: url(js/backgroundsize.min.htc);
}
#bronze {
	background: transparent url('../images/h1_prize_s_bronze.png') 0px 0px no-repeat;
	background-size: 100%;
	-ms-behavior: url(js/backgroundsize.min.htc);
	behavior: url(js/backgroundsize.min.htc);
}
.winner .worktext p {
	text-justify: inter-ideograph;
	margin-top: 0.5em;
	height: 7.8em;
	overflow: hidden;
}
.winner .workphoto {
	overflow: hidden;
}
.winner .workphoto img {
	width: 93%;
	height: auto;
	margin: 10px;
}
/*
.winner2 .works {
	width: 28%;
	float: left;
	margin: 50px 0px 0px 38px;
}
*/
.winner2 .works {
	width: 40%;
	height: auto;
	overflow: hidden;
}
.winner2 .left-margin {
	margin: 50px 0px 0px 38px;
}
.winner2 .left-margin2 {
	margin-left: 30%;
}

.winner2 .workphoto {
	overflow: hidden;
}
.winner2 .workphoto img {
	overflow: hidden;
}
.winner2 .bronzebt a {
	font-size: 90%;
}

#pastepisode .trbox {
	width: 90%;
}
#pastepisode .pastep li {
}
#pastepisode .pastep li .ytlink {
	width: 100%;
}
#pastepisode .pastep li .ytlink img {
	width: 80%;
	height: auto;
}
#pastepisode .cmepi {
	width: 60%;
	margin-top: 20px;
}
#pastepisode .cmepi .ytlink {
	width: 40%;
	height: auto;
	margin: 10px;
}
#pastepisode .cmepi h4 {
	font-size: 13px;
	margin: 8px;
	line-height: 1.8em;
}
#pastepisode .awardlink {
	margin-top: 20px;
}
#pastepisode .awardlink .button {
	margin: 0 0 1.1em 0;
	text-align: left;
	padding: 0.5em 1em 0.5em 0.5em;
}
#pastepisode .awardlink .button a {
	font-size: 70%;
	background: transparent url('../images/bt_arrow_right.png') no-repeat right 0.2em;
}
}
/*---------------------------------------------------
    @Styles for Mobile Portrait
---------------------------------------------------*/

@media (max-width: 480px) {
#hederwrapper {
	width: 95%;
	height: 70px;
}
#hederwrapper .cmnHeader__logo {
	width: 35%;
	display: inline-block;
}
#hederwrapper img {
	width: 100%;
	height: auto;
}
.cmnSns {
	position: absolute;
	top: 10px;
	right: 0px;
}
#top .topblock h1 {
	width: 100%;
	font-size: 30px;
}
#top .topblock h2 {
	font-size: 20px;
}
#top .topblock h2 span {
	display: block;
	line-height: 1.2em;
}
#top .topblock h3 {
	font-size: 15px;
}
#top .topblock h4 {
	width: 120px;
	height: 120px;
	background-size: cover;
	top: 90px;
	left: 33%;
}
#top .topblock .movlink {
	position: relative;
	top: 0px;
	left: 55%;
	font-size: 12px;
	color: #fff;
	overflow: hidden;
	width: 120px;
	margin: 0;
	padding: 0;
}
#top .topblock .movlinktx {
	width: 120px;
	text-align: center;
	margin: 0;
	padding: 0;
}
#top .topblock .movlink a {
	width: 60px;
	height: 60px;
	clear: both;
	margin: 0;
	padding: 0;
	float: right;
}
#top .topblock .movlink a img {
	width: 100%;
	height: auto;
	margin: 0;
	padding: 0;
}
#top .topblock .movlink a span {
	display: none;
}
#top .topblock .movlink h3 {
	display: inline;
}
#bodytext p {
	margin-left: 1em;
	margin-right: 1em;
}
.cmnFooter {
	font-size: 60%;
	text-align: center;
	padding: 5px 0;
}

#gold {
	background: transparent url('../images/h1_prize_ss_gold.png') 0px 0px no-repeat;
	background-size: 100%;
	-ms-behavior: url(js/backgroundsize.min.htc);
	behavior: url(js/backgroundsize.min.htc);
}
#silver {
	background: transparent url('../images/h1_prize_ss_silver.png') 0px 0px no-repeat;
	background-size: 100%;
	-ms-behavior: url(js/backgroundsize.min.htc);
	behavior: url(js/backgroundsize.min.htc);
}
#bronze {
	background: transparent url('../images/h1_prize_ss_bronze.png') 0px 0px no-repeat;
	background-size: 100%;
	-ms-behavior: url(js/backgroundsize.min.htc);
	behavior: url(js/backgroundsize.min.htc);
}

.winner .workphoto, .winner2 .works {
	clear: both;
	width: 95%;
	height: auto;
	margin-left: 2.5%;
}
.winner2 .works img {
	overflow: hidden;
}

.winner .worktext {
	clear: both;
	width: 95%;
	margin-left: 2.5%;
	margin-top: 5px;
}
.winner .workfooter {
	clear: both;
}

#guideline {
	padding: 0em;
	line-height: 1.2em;
	font-size: 11px;
}
#guideline p {
	font-size: 11px;
}
#guideline h2 {
	font-size: 24px;
	line-height: 1.2em;
}
#guideline h3 {
	font-size: 20px;
}
#guideline h4 {
	font-size: 15px;
	line-height: 1.4em;
}

#episode h3 {
	font-size: 16px;
	text-align: center;
	color: #910000;
	white-space: nowrap;
	margin-bottom: 2em;
}
#episode h3 img {
	width: 80px;
	height: auto;
	margin: 6% 6% 0px 0px;
}
#episode h3 span {
	display: block;
	margin: 0px 10% 0px 0px;
	padding-top: 3%;
	vertical-align: middle;
}
#pastepisode .trbox h3 {
	font-size: 21px;
}
#pastepisode .pastep h4 {
	font-size: 10px;
}
#pastepisode .pastep .mvtt {
	font-size: 12px;
}
#pastepisode .cmepi {
	width: 95%;
	margin: 20px 0 10px 0;
	padding: 0;
}
#pastepisode .cmepi .ytlink {
	width: 35%;
	margin: 10px;
	float: left;
	display: inline-block;
	overflow: hidden;
	background-color: #ccc;
}
#pastepisode .cmepi h4 {
	width: 60%;
	float: right;
	margin: -65px 0 0 0;
	font-size: 11px;
	display: inline-block;
	overflow: hidden;
}
#pastepisode .awardlink {
	width: 100%;
	margin-top: 20px;
	text-align: left;
}
#pastepisode .awardlink .button {
	width: 38%;
	margin: 10px 5px 0 0;
	text-align: left;
	padding: 0.5em 1em 0.5em 0.5em;
}
#pastepisode .awardlink .button a {
	font-size: 9px;
	background: transparent url('../images/bt_arrow_right.png') no-repeat right 0.2em;
}
#pastepisode .awardlink .button span {
	white-space: nowrap;
	display: block;
}
.pagetop {
	width: 54px;
	height: 54px;
	position: fixed;
	bottom: 10px;
	right: 10px;
}
}

.textlink01 {
	position: relative;
	top: 310px;
}

a.oubolink:link {
text-decoration : underline; 
color : #660000; 
}

a.oubolink:visited {
text-decoration : underline; 
color : #660000; 
}

a.oubolink:hover {
text-decoration : underline; 
color : #FF0000; 
}
