@charset "UTF-8";
/* CSS Document */

/* Reset -------------------------------------------- */

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {border: 0;font-family: inherit;font-size: 100%;font-style: inherit;font-weight: inherit;margin: 0;outline: 0;padding: 0;vertical-align: baseline;}
:focus {outline: 0;}

ol, ul {list-style: none outside none;}
table {border-collapse: collapse;border-spacing: 0;}
caption, th, td {font-weight: normal;text-align: left;}
blockquote:before, blockquote:after,q:before, q:after {content: "";}
blockquote, q {quotes: "" "";}
a img {border: 0;}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {display: block;}

html {overflow-y: scroll;}
body{
font:80%/1.5 AxisStd-Light, Helvetica,Arial,"YuGothic", "Yu Gothic","ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
color:#000;
-webkit-text-size-adjust: 100%;
background:#fff;
}
html>/**/body {}
* + html body {font-family: "メイリオ","Meiryo";}

object, embed	{vertical-align: top;}
hr, legend	{display: none;}
img {-ms-interpolation-mode: bicubic; }
li	{list-style-type: none;}
p, dd, blockquote {text-align: justify;text-justify: inter-ideograph;}
a	{overflow: hidden;outline: none;}

strong {font-weight: bold;}
sub, sup {font-size: 75%;line-height: 0;position: relative;vertical-align: baseline;}
sup {top: -0.5em;}
sub {bottom: -0.25em;}

/* -------------------------------------------- */


/* Style -------------------------------------------- */

body {
	color: #fff;
	font-size: 16px;
	line-height: 1.7;
	background-color: #000;
/*
	background-image: url(img/bg_page.jpg);
	background-position: center bottom;
	background-repeat: no-repeat;
	background-size: 100% auto;
	background-attachment: fixed;
	*/
}

body::before {
	content: "";
	background: url(img/bg_page.jpg) no-repeat center bottom;
	background-size: 100% auto;
	display: block;
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
}

a{
	margin: 0;
	padding: 0;
	text-decoration: none;
	outline: 0;
	vertical-align: baseline;
	background: transparent;
	font-size: 100%;
	color: #000;
	transition: all 0.2s linear;
}


/* --------------------------------------------------
  Structure
-------------------------------------------------- */

header.common, footer.common {
	clear: both;
	width: 100%;
	position: relative;
}

.ivmvel{
	opacity: 0.0;
	-webkit-transform: translate(0, 20px); 
	transform: translate(0, 20px); 
	transition: all 0.4s ease;
}
.ivmv{
	opacity: 1.0;
	-webkit-transform: translate(0, 0);
	transform: translate(0, 0); 
}
.ivhmvel{
	opacity: 1.0;
	transition: opacity 0.4s ease;
	z-index: 100;
}
.ivhmv{
	opacity: 0.0;
	z-index: -1;
}


/* --------------------------------------------------
  Common Header
-------------------------------------------------- */

header.common {
	width: 100%;
	height: 90px;

	position: fixed;
	z-index: 500;
	
	background-color: rgba(0, 0, 0, 0.85);
	
}

header.common #logoJSPARC,
header.common #logoJAXA{
	width: 90px;
	position: absolute;
	top: 10px;
	line-height: 0;
	z-index: 550;
}
header.common #logoJSPARC{
	left: 15px;
}
header.common #logoJAXA{
	right: 15px;
}
header.common #logoJSPARC img,
header.common #logoJAXA img{
	width: 100%;
	height: auto;
}




/* --------------------------------------------------
  Home
-------------------------------------------------- */

#homeMainImage{
	width: 100%;
	height: 1000px;
	position: relative;
/*	z-index: -1;*/
	
/*
	background-color: #000;
	background-image: url(img/bg_page_top.jpg);
	background-position: center bottom;
	background-repeat: no-repeat;
	background-size: 100% auto;
	background-attachment: fixed;
*/
}

#homeMainImage::before {
	content: "";
	background: url(img/bg_page_top.jpg) no-repeat center bottom;
	background-size: 100% auto;
	display: block;
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
}


#homeMainImage .content{
	width: 90%;
	height: 100%;
	margin: 0 auto;
	
	display: flex;
	flex-direction: row;
	align-items: center;
}
#homeMainImage .mainCopy{
	width: 100%;
	max-width: 500px;
	margin: auto;
    
    position: relative;
}
#homeMainImage .mainCopy img{
	width: 100%;
	height: auto;
}
#homeMainImage .conceptMovie{
    width: 100%;
    
    position: absolute;
    left: 0;
    top: 80px;
    
    display: flex;
    justify-content: center;
}
#homeMainImage .conceptMovie .playBtn{
    width: 100px;
    position: relative;
    z-index: 100;
}
#homeMainImage .conceptMovie .playBtn .light{
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 110;
}
#homeMainImage .conceptMovie .playBtn .btn{
    width: 100%;
    position: relative;
    z-index: 120;
}
#homeMainImage .conceptMovie img{
	width: 100%;
	height: auto;
}
#homeMainImage .conceptMovie .playBtn .light img{
    animation: playBtnBgamime 1s reverse infinite;
}
@keyframes playBtnBgamime{
    0% { transform: scale(1); }
    50% { transform: scale(1.3); }
    100% { transform: scale(1); }
}

#homeMainImage .conceptMovie .playBtn a img{
    transition: all 0.2s linear;
}
#homeMainImage .conceptMovie .playBtn a:hover img{
    transform: scale(1.2);
}

#homeMainImage .scrollBtn{
	display: block;
	width: 48px;
	height: 28px;
	position: absolute;
	left: 48%;
	bottom: 20px;
}
#homeMainImage .scrollBtn img{
	width: 100%;
	height: auto;
}


#homeLead{
	width: 90%;
	max-width: 800px;
	margin: 0 auto;
	
	padding: 100px 0;
	margin-bottom: 60px;
}
#homeLead p{
	font-size: 14px;
	line-height: 2.0;
}


#homeProject{
	width: 100%;

	margin-bottom: 100px;
}


#homeNews{
	width: 100%;

	margin-bottom: 100px;
}


#whatsnew{
	width: 90%;
	max-width: 700px;
	margin: 0 auto;
}
#whatsnew ul{
	width: 100%;
}
#whatsnew ul li{
	display: flex;
	flex-wrap: nowrap;
	flex-direction: row;
	align-items: flex-start;
	
	font-size: 14px;
	line-height: 1.8;
	
	
	padding: 35px 0;
	background-image: url(img/bg_newsItem.png);
	background-repeat: no-repeat;
	background-position: center top;
}
#whatsnew ul li:first-child{
	padding-top: 20px;
	background-image: none;
}
#whatsnew ul li .date{
    box-sizing: border-box;
    width: 7.5em;
	white-space: nowrap;
	padding: 0 50px 0 0;
}
#whatsnew ul li a{
	color: #fff;
}
#whatsnew ul li a:hover{
	color: #f8f62f;
	text-decoration: underline;
}


#whatsnew .readMore{
	width: 100%;
	padding-bottom: 50px;
}
#whatsnew .readMore a{
	width: 90%;
	max-width: 120px;
	margin: 0 auto;
	
	height: 30px;
	
	background-color: #222;
	border: 1px solid #444;

	background-image: url(img/icon_linkBtn.png);
	background-repeat: no-repeat;
	background-position: right 6px center;
	background-size: 19px auto;
	
	display: flex;
	flex-direction: row;
	align-items: center;
}
#whatsnew .readMore a span{
	display: block;
	margin: auto;
	font-size: 12px;
	color: #f8f62f;
	letter-spacing: 0.1em;
}
#whatsnew .readMore a:hover{
	background-color: #000;
}





#homeAbout{
	width: 100%;

	margin-bottom: 100px;
}

#aboutIndex{
	width: 100%;
	
	padding-top: 80px;
}

#aboutIndex ul{
	width: 90%;
	max-width: 1000px;
	margin: 0 auto;

	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	align-items: flex-start;
	justify-content: space-between;
}
#aboutIndex li{
	width: 23%;
	
	padding-bottom: 20px;
}
#aboutIndex li a{
	display: block;
	width: 100%;
	font-size: 13px;
	color: #fff;
	text-align: center;
	line-height: 1.3;
	
	padding-bottom: 20px;
}
#aboutIndex li a:hover{
	color: #666;
}
#aboutIndex li .photo{
	display: block;
	position: relative;

	width: 100%;
	overflow:hidden;
	
	line-height: 0;

	margin-bottom: 15px;
}
#aboutIndex li .photo:before {
	content:"";
	display: block;
	padding-top: 56%;
}
#aboutIndex li .photo img{
	display: block;
	width: 100%;
	height: auto;

	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;

	transition: all 0.3s linear;
}
#aboutIndex li .photo img:hover{
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-o-transform: scale(1.1);
	-ms-transform: scale(1.1);
	transform: scale(1.1);
}

#aboutIndex li .title{
	font-size: 13px;
	font-family: 'Questrial', sans-serif;
	letter-spacing: 0.1em;
	
	color: #fff;
	
}
#aboutIndex li .title:after {
	content: '';
	display: inline-block;
	width: 14px;
	height: 12px;
	margin-left: 10px;
	background-image: url(img/icon_link.png);
	background-size: contain;
	vertical-align: top;
}
	


#homeContact{
	margin-bottom: 180px;
}
#homeContact a{
	width: 90%;
	max-width: 400px;
	margin: 0 auto;
	
	height: 60px;
	
	background-color: #222;
	border: 1px solid #444;

	background-image: url(img/link_contact.png);
	background-repeat: no-repeat;
	background-position: right 12px center;
	background-size: 38px auto;
	
	display: flex;
	flex-direction: row;
	align-items: center;
}
#homeContact a span{
	display: block;
	margin: auto;
	font-size: 18px;
	color: #f8f62f;
	letter-spacing: 0.1em;
}
#homeContact a:hover{
	background-color: #000;
}




#homeDownload{
	width: 90%;
	max-width: 900px;
	margin: 0 auto;
	margin-bottom: 180px;
}

#homeDownload ul.images{
	width: 100%;
	margin: 0 auto;
	margin-bottom: 40px;
	
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
#homeDownload ul.images li{
	width: 24%;
	line-height: 0;
	margin-bottom: 20px;
}
#homeDownload ul.images li img{
	width: 100%;
	height: auto;
}

#homeDownload a{
	width: 100%;
	max-width: 600px;
	margin: 0 auto;
	
	height: 60px;
	
	background-color: #222;
	border: 1px solid #444;

	background-image: url(img/link_contact.png);
	background-repeat: no-repeat;
	background-position: right 12px center;
	background-size: 38px auto;
	
	display: flex;
	flex-direction: row;
	align-items: center;
}
#homeDownload a span{
	box-sizing: border-box;
	padding: 0 50px 0 20px;
	
	display: block;
	margin: auto;
	font-size: 18px;
	line-height: 1.2;
	color: #f8f62f;
	letter-spacing: 0.1em;
}
#homeDownload a:hover{
	background-color: #000;
}

#homeDownload p{
	font-size: 14px;
	line-height: 1.2;
	text-align: center;
}





/* --------------------------------------------------
  Common
-------------------------------------------------- */


h1.catTitle,
h2.catTitle{
	width: 100%;
	
	margin-bottom: 30px;
}
h1.catTitle .en,
h2.catTitle .en{
	width: 100%;
	height: 100px;
	
	background-image: url(img/bg_catTitle.png);
	background-repeat: no-repeat;
	background-position: center center;
	
	display: flex;
	flex-direction: row;
	align-items: center;
}
h1.catTitle .en span,
h2.catTitle .en span{
	display: block;
	text-align: center;
	
	margin: auto;
	
	font-size: 18px;
	font-family: 'Questrial', sans-serif;
	color: #f8f62f;
	
	letter-spacing: 0.2em;
	
}
h1.catTitle .jp,
h2.catTitle .jp{
	width: 100%;
	
	padding: 20px 0 20px;

	display: block;
	text-align: center;

	font-size: 17px;
	color: #fff;

}


.catTitleSub{
	height: 100px;
	
	display: flex;
	flex-direction: row;
    justify-content: flex-start;
	align-items: center;
}
.catTitleSub .title{
	height: 100px;
	
	background-image: url(img/bg_catTitle.png);
	background-repeat: no-repeat;
	background-position: center center;
	
	display: flex;
	flex-direction: row;
	align-items: center;
}
.catTitleSub .title span{
	display: block;

    text-align: center;
    white-space: nowrap;
	
	margin: auto;
	
	font-size: 18px;
	font-family: 'Questrial', sans-serif;
	color: #f8f62f;
	
	letter-spacing: 0.2em;
	
}


#projectIndex,
.projectIndex{
	width: 100%;
}

#projectIndex ul,
.projectIndex ul{
	width: 90%;
	max-width: 1000px;
	margin: 0 auto;

	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	align-items: flex-start;
	justify-content: space-between;
}
#projectIndex li,
.projectIndex li{
	width: 30%;
	
	margin-bottom: 50px;
}

#projectIndex li a,
.projectIndex li a{
	display: block;
	width: 100%;
}
#projectIndex li .prjImage,
.projectIndex li .prjImage{
	display: block;
	position: relative;
	z-index: 200;

	width: 100%;
	overflow:hidden;
	
	line-height: 0;
}
#projectIndex li .prjImage:before ,
.projectIndex li .prjImage:before {
	content:"";
	display: block;
	padding-top: 100%;
}

#projectIndex li .prjImage img,
.projectIndex li .prjImage img{
	display: block;
	width: 100%;
	height: auto;

	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;

	transition: all 0.3s linear;
}
#projectIndex li .prjImage:hover img,
.projectIndex li .prjImage:hover img{
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-o-transform: scale(1.1);
	-ms-transform: scale(1.1);
	transform: scale(1.1);
}
#projectIndex li .titleArea,
.projectIndex li .titleArea{
	box-sizing: border-box;
	display: block;
	width: 100%;
	min-height: 28%;
	padding: 10px 15px;
	
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: 210;
	
	background-color: rgba(0,0,0,0.45);
	
	background-image: url(img/link_index.png);
	background-position: right 5px bottom 5px;
	background-repeat: no-repeat;
	background-size: 38px auto;
	
}
#projectIndex li .titleArea.nolink,
.projectIndex li .titleArea.nolink{
	background-image: none;
}
#projectIndex li .titleArea.nl,
.projectIndex li .titleArea.nl{
	background-image: none;
}
#projectIndex li .titleArea h2,
#projectIndex li .titleArea h3,
.projectIndex li .titleArea h2,
.projectIndex li .titleArea h3{
	font-size: 14px;
	line-height: 1.5;
	
	color: #fff;
	
	margin-bottom: 5px;
}
#projectIndex li .titleArea .desc,
.projectIndex li .titleArea .desc{
	font-size: 11px;
	line-height: 1.5;
	
	color: #fff;
}


.projectIndex .readMore{
	width: 90%;
	max-width: 1000px;
	margin: 0 auto;
	padding-bottom: 50px;
}
.projectIndex .readMore a{
	width: 90%;
	max-width: 260px;
	margin: 0 auto;
	
	height: 30px;
	
	background-color: #222;
	border: 1px solid #444;

	background-image: url(img/icon_linkBtn.png);
	background-repeat: no-repeat;
	background-position: right 6px center;
	background-size: 19px auto;
	
	display: flex;
	flex-direction: row;
	align-items: center;
}
.projectIndex .readMore a span{
	display: block;
	margin: auto;
	font-size: 12px;
	color: #f8f62f;
	letter-spacing: 0.1em;
}
.projectIndex .readMore a:hover{
	background-color: #000;
}




/* --------------------------------------------------
  Sub
-------------------------------------------------- */

#subPage{
	box-sizing: border-box;
	width: 100%;
	min-height: 95vh;

	padding: 180px 0 80px;

}
#subPage.detail{
	padding: 90px 0 80px;
}


#subPage .lead{
	box-sizing: border-box;
	width: 90%;
	max-width: 900px;
	margin: 0 auto;
	background-color: rgba(255,255,255,0.1);

	
	padding: 45px 45px;
	
	font-size: 14px;
	color: #fff;
	line-height: 1.8;
	
	margin-bottom: 25px;
}




.projectDetail{
    width: 100%;
    max-width: 1024px;
    margin: 0 auto;
    
	background-color: rgba(255,255,255,0.1);
    
    padding-bottom: 50px;

}
.projectDetail .header{
    box-sizing: border-box;
    width: 100%;
    
    height: 140px;
    
    padding-left: 2%;
    
    display: flex;
    justify-content: space-between;
    align-content: center;
    align-items: center;
    
    margin-bottom: 20px;
}
.projectDetail .header.nl{
    height: 80px;
}
.projectDetail .logo{
    max-width: 50%;
    line-height: 0;
}
.projectDetail .logo img{
    width: auto;
    height: 60px;
}

.projectDetail h1{
    width: 90%;
    margin: 0 auto;
    text-align: center;
    
    font-size: 30px;
    line-height: 1.3;
    
    letter-spacing: 0.05em;
    
    margin-bottom: 20px;
}
.projectDetail .cName{
    width: 90%;
    margin: 0 auto;
    text-align: center;
    
    font-size: 18px;
    line-height: 1.3;
    
    letter-spacing: 0.05em;
    
    margin-bottom: 0px;
}
.projectDetail .cName.ml{
    line-height: 1.6;
}
.projectDetail .cLink{
    width: 90%;
    margin: 0 auto;
    text-align: center;
    
    margin-bottom: 60px;
}
.projectDetail .cLink a{
    color: #888727;
    font-style: italic;
    font-size: 14px;
    line-height: 1.3;
    
    letter-spacing: 0.05em;    
}
.projectDetail .cLink a:hover{
    color: #f8f62f;
}


.projectDetail .outline{
    width: 90%;
    max-width: 820px;
    margin: 0 auto;
    
    display: flex;
    justify-content: space-between;

    margin-bottom: 60px;
}
.projectDetail .outline .body{
    width: 55%;
    
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.projectDetail .outline .body.reference{
    width: 100%;
}
.projectDetail .outline .body.reference p.reflead{
    text-align: center;
}
.projectDetail .outline .image{
    width: 40%;
    
    line-height: 0;
    
    display: block;
}
.projectDetail .outline .image img{
    width: 100%;
    height: auto;
}
.projectDetail .summary{
    width: 100%;
    font-size: 15px;
    line-height: 1.6;
    
    padding-bottom: 0.5em;
}
.projectDetail .role{
    box-sizing: border-box;
    width: 100%;
    
    padding: 15px 20px;
    
    border: 1px solid #333;
    background-color: #111;
    
    display: flex;
    justify-content: flex-start;
    align-content: center;
    align-items: center;
}

.projectDetail .role h3{
    font-size: 15px;
    color: #f8f62f;
    line-height: 1.3;
    
    margin-bottom: 10px;
}
.projectDetail .role .jaxa{
    padding-right: 15px;
    line-height: 0;
}
.projectDetail .role .jaxa img{
    width: 80px;
    height: auto;
}
.projectDetail .role p{
    font-size: 13px;
    line-height: 1.7;
}

.projectDetail .summary ul{
	list-style-type: disc;
	padding-left: 1em;
}
.projectDetail .summary ul li{
	list-style-type: disc;
    font-size: 15px;
}


.projectDetail p.period{
    width: 90%;
    max-width: 820px;
    margin: 0 auto;
    
    text-align: right;
    
    font-size: 13px;
    line-height: 1.7;
    
    margin-bottom: 40px;
}

.projectDetail h2{
    
    font-size: 16px;
    color: #f8f62f;
    letter-spacing: 0.2em;
    line-height: 1.3;
    padding-bottom: 5px;
    border-bottom: 1px solid #f8f62f;
    margin-bottom: 15px;
    
}
.projectDetail .contents{
    width: 90%;
    max-width: 820px;
    margin: 0 auto;
    
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.projectDetail .fbx{
    width: 100%;
    padding-bottom: 60px;
}
.projectDetail .wbx{
    width: 72%;
    padding-bottom: 60px;
}
.projectDetail .nbx{
    width: 25%;
    padding-bottom: 60px;
}

.projectDetail .interview{
    width: 100%;
    height: 150px;
    
    background-color: rgba(255,255,255,0.1);
    
	background-image: url(img/icon_linkBtn.png);
	background-repeat: no-repeat;
	background-position: right 10px center;
	background-size: 37px auto;
}
.projectDetail .interview.ext{
	background-image: url("img/icon_linkBtn_ext.png");
}
.projectDetail .interview .image{
    display: block;
    width: 200px;
    line-height: 0;
    float: left;
    
	transition: all 0.2s linear;
}
.projectDetail .interview .image img{
    width: 100%;
    height: auto;
}
.projectDetail .interview .title{
    height: 100%;

    display: flex;
    align-content: center;
    align-items: center;

	transition: all 0.2s linear;
}
.projectDetail .interview .title h3{
    box-sizing: border-box;
    display: block;
    width: 100%;
    padding: 0 60px 0 30px;
    
    font-size: 16px;
    line-height: 1.5;
    color: #fff;
}
.projectDetail .interview a:hover .image,
.projectDetail .interview a:hover .title{
    opacity: 0.7;
}

.projectDetail .movie{
    width: 100%;
    height: 150px;
    
    overflow: hidden;
    position: relative;
    z-index: 100;
}
.projectDetail .movie{
    width: 100%;
    height: 150px;
    
    overflow: hidden;
    position: relative;
    z-index: 100;
}

.projectDetail .movie.mainArea{
	width: 100%;
    height: auto;
	display: block;
	position: relative;
	overflow: hidden;
	
	line-height: 0;
}
.projectDetail .movie.mainArea::before{
	content:"";
	display: block;
	padding-top: 75%;
}


.projectDetail .movie .image{
    display: block;
    
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    line-height: 0;
    
    z-index: 110;
    
	transition: all 0.2s linear;
}
.projectDetail .movie .image img{
    width: auto;
    height: 100%;
}
.projectDetail .movie a:hover .image{
    opacity: 0.7;
}
.projectDetail .movie .link{
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
    
    position: absolute;
    left: 0;
    top: 0;
    
    width: 100%;
    height: 150px;
    
    z-index: 120;
    
	transition: all 0.2s linear;
}
.projectDetail .movie .link .icon{
    display: flex;
    width: 37px;
    height: 37px;
    line-height: 0;
}
.projectDetail .movie .link .icon img{
    width: 100%;
    height: auto;
}
.projectDetail .movie.mainArea .link{
    align-content: flex-end;
    align-items: flex-end;
    height: 100%;
}
.projectDetail .movie.mainArea .link .icon{
    width: 100%;
    height: 25px;
    background-color: rgba(0, 0, 0, 0.8);
    text-align: center;
}
.projectDetail .movie.mainArea .link .icon img{
    width: auto;
    height: 25px;
    
    margin: 0 auto;
}


.projectDetail ul.news li{
    font-size: 14px;
    line-height: 1.6;
    


    padding-bottom: 0.5em;
}
.projectDetail ul.news i{
    color: #f8f62f;
}
.projectDetail ul.news li a{
    color: #f8f62f;
    text-decoration: underline;
}
.projectDetail ul.news li a:hover{
    text-decoration: none;
}


.projectDetail .tsl{
    width: 100%;
    position: relative;
    z-index: 200;
}
.projectDetail .tsl .chart{
    width: 100%;
    position: relative;
    z-index: 220;
}
.projectDetail .tsl .chart img{
    width: 100%;
    height: auto;
}
.projectDetail .tsl .categories{
    margin-top: -15px;
    position: relative;
    z-index: 210;

    box-sizing: border-box;
    width: 100%;
    
    padding: 20px 2%;
    
    border: 1px solid #444;
    background-color: rgba(255,255,255,0.1);
}
.projectDetail .tsl .dlBtnHB{
    box-sizing: border-box;
    
    padding: 10px 0;
}
.projectDetail .tsl .dlBtnHB a{
    box-sizing: border-box;
    display: block;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;

    padding: 16px 18px;
    font-size: 14px;
    font-weight: bold;
    
    color: #000;
    line-height: 1.0;
    white-space: nowrap;
    border-radius: 30px;
    text-align: center;
    vertical-align: middle;

    background-color: #f8f62f;
    box-shadow: 0 1px 7px rgba(255,255,255,0.6);

}
.projectDetail .tsl .dlBtnHB a::before{
    font-weight: bold;
    font-size: 20px;
    content: "\f1c1　";
    font-family: "Font Awesome 5 Free";
}
.projectDetail .tsl .dlBtnHB a::after{
    content: "";
}
.projectDetail .tsl .dlBtnHB a:hover{
    opacity: 0.8;
    box-shadow: none;
}


.projectDetail .boshu{
    box-sizing: border-box;
    width: 100%;
    
    margin-bottom: 10px;
}
.projectDetail .boshu a{
    display: block;
    
    text-align: center;

    background-color: #f8f62f;
    padding: 10px 10px;
    
    border-radius: 10px;
    
    font-size: 13px;
    color: #000;
    line-height: 1.5;
}
.projectDetail .boshu a .title{
    font-size: 14px;
    font-weight: bold;
}
.projectDetail .boshu a:hover{
    opacity: 0.7;
}



.projectDetail .tsl .activity{
    box-sizing: border-box;
    width: 100%;
    
    background-color: rgba(255,255,255,0.05);
}
.projectDetail .tsl .activity.reference{
    margin-bottom: 20px;
}
.projectDetail .tsl .activity h2{
    box-sizing: border-box;
    width: 100%;
    
    padding: 10px 16px;

    font-size: 16px;
    line-height: 1.3;
    color: #fff;
    
    background-color: #333;
    
    border-bottom: 1px solid #f8f62f;
}
.projectDetail .tsl .activity .bodyArea{
    box-sizing: border-box;
    width: 100%;
    
    padding: 0 20px;
}

.projectDetail .tsl .activity .topic{
    box-sizing: border-box;
    width: 100%;
    padding: 20px 0;
}
.projectDetail .tsl .activity .topic h3{
    text-align: center;
    
    color: #f8f62f;
    font-size: 16px;
    line-height: 1.3;
    
    margin-bottom: 15px;
}
.projectDetail .tsl .activity.reference .topic h3{
    width: 90%;
    margin: 0 auto;
    
    
    margin-top: 10px;
    margin-bottom: 30px;
}
.projectDetail .tsl .activity .topic .note{
    text-align: center;
    font-size: 12px;
    
    padding: 0 0 10px;
}
.projectDetail .tsl .activity .topic .note a{
    color: #fff;
    text-decoration: underline;
}

.projectDetail .tsl .activity.reference .links{
    width: 95%;
    margin: 0 auto;
    
    display: flex;
    flex-wrap: wrap;
    
    margin-bottom: 5px;
}
.projectDetail .tsl .activity.reference .links ul{
    width: 46%;
    margin: 0 2%;
}
.projectDetail .tsl .activity.reference .links ul li{
    line-height: 1.3;
    
    padding-left: 35px;
    text-indent: -35px;
    
    margin-bottom: 10px;
}
.projectDetail .tsl .activity.reference .links ul li.mov::before{
    font-family: "Font Awesome 5 Brands";
    content: "\f167";
        
    position: relative;
    top: 5px;
    
    color: #f8f62f;
    font-size: 25px;
    margin-right: 10px;
}
.projectDetail .tsl .activity.reference .links ul li.doc::before{
    font-family: "Font Awesome 5 Free";
    content: "\f15c";
        
    position: relative;
    top: 5px;
    
    color: #f8f62f;
    font-size: 25px;
    margin: 0 12px 0 5px;
}
.projectDetail .tsl .activity.reference .links ul li a{
    color: #f8f62f;
    font-size: 13px;
    
    text-decoration: underline;
}
.projectDetail .tsl .activity.reference .links ul li a:hover{
    text-decoration: none;
}
.projectDetail .tsl .activity.reference .links ul li.ext a::after{
    font-family: "Font Awesome 5 Free";
    content: "\f35d";
    font-weight: bold;
	padding-left: 5px;
}


.projectDetail .tsl .workshop{
    box-sizing: border-box;
    width: 100%;
    
    background-color: rgba(255,255,255,0.1);
    
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-content: center;
    align-items: center;
    
    margin-bottom: 12px;
}
.projectDetail .tsl .workshop .detail{
    width: 45%;
    padding: 15px 20px;
}
.projectDetail .tsl .workshop .detail h4{
    font-size: 14px;
    line-height: 1.3;
    color: #fff;
    
    margin-bottom: 10px;
}
.projectDetail .tsl .workshop .detail p{
    font-size: 13px;
    line-height: 1.7;
    color: #fff;
}
.projectDetail .tsl .workshop .logo{
    width: 26%;
    line-height: 0;
}
.projectDetail .tsl .workshop .logo img{
    width: 100%;
    height: auto;
    
    display: block;
    border-radius: 5px;
}
.projectDetail .tsl .workshop .apply{
    width: 26%;
}
.projectDetail .tsl .workshop .apply a{
    box-sizing: border-box;
    display: block;
    width: 100%;
    max-width: 150px;
    margin: 0 auto;

    padding: 8px 10px;
    font-size: 14px;
    font-weight: bold;
    
    color: #000;
    line-height: 1.0;
    white-space: nowrap;
    border-radius: 30px;
    text-align: center;
    vertical-align: middle;

    background-color: #f8f62f;

}
.projectDetail .tsl .workshop .apply a:hover{
    opacity: 0.8;
}


.projectDetail .tsl ul.mentor{
    box-sizing: border-box;
    width: 100%;
    margin: 0 auto;
    padding: 0 2%;
    
    padding-top: 30px;
    
    display: flex;
    flex-wrap: wrap;
    
    background-color: rgba(255,255,255,0.1);
}
.projectDetail .tsl ul.mentor li{
    width: 31%;
    margin: 0 1% 30px;
}
.projectDetail .tsl ul.mentor li .photo{
    width: 90%;
    max-width: 140px;
    
    margin:  0 auto;
    
    line-height: 0;
    
    margin-bottom: 16px;
}
.projectDetail .tsl ul.mentor li .photo img{
    width: 100%;
    height: auto;
    
    display: block;
    border-radius: 50%;
}

.projectDetail .tsl ul.mentor li h4{
    text-align: center;
    
    font-size: 15px;
    font-weight: normal;
    line-height: 1.3;
    
    margin-bottom: 12px;
}
.projectDetail .tsl ul.mentor li p{
    text-align: center;

    font-size: 12px;
    line-height: 1.6;
}
.projectDetail .tsl ul.mentor li p .sf{
    font-size: 11px;
}
.projectDetail .tsl ul.mentor li.note{
    display: flex;
    align-content: flex-end;
    align-items: flex-end;
}
.projectDetail .tsl ul.mentor li.note p{
    width: 100%;
    text-align: center;
}




.projectDetail .tsl .comingsoon{
    box-sizing: border-box;
    width: 100%;
    
    background-color: rgba(255,255,255,0.1);
    
    padding: 20px 5%;
    text-align: center;
    font-size: 14px;
    letter-spacing: 0.1em;
    
    margin-bottom: 12px;
}


.projectDetail .tsl .partners{
    box-sizing: border-box;
    width: 100%;
    
    padding: 20px 0;
    
    background-color: rgba(255,255,255,0.1);
    
    margin-bottom: 12px;
    
    position: relative;
    z-index: 300;
}

.projectDetail .tsl .partners h4{
    box-sizing: border-box;
    width: 80%;
    max-width: 180px;
    margin: 0 auto;
    text-align: center;
    
    background-color: #000;
    border: 1px solid #444;
    border-radius: 5px;
    
    font-size: 15px;
    padding: 3px 0;
    
    position: relative;
    z-index: 320;
    
    margin-bottom: -15px;
}
.projectDetail .tsl .partners .logos{
    width: 95%;

    margin: 0 auto;
    line-height: 0;
    
    
    padding-top: 15px;
    background-color: #fff;
    border-radius: 5px;

}
.projectDetail .tsl .partners .logos img{
    width: 100%;
    height: auto;
    
    display: block;
    border-radius: 5px;
}









.backToProjectIndex{
	width: 90%;
	max-width: 900px;
	margin: 0 auto;

    margin-bottom: 20px;
    
    display: flex;
    justify-content: center;
}
.backToProjectIndex a{
    box-sizing: border-box;
	width: 90%;
	max-width: 350px;
	
    padding-left: 30px;
    
	height: 50px;
	
	background-color: #222;
	border: 1px solid #444;

	background-image: url("img/icon_linkBtn_rev.png");
	background-repeat: no-repeat;
	background-position: 12px center;
	background-size: 30px auto;
	
	display: flex;
	flex-direction: row;
	align-items: center;
}
.backToProjectIndex a span{
	display: block;
	margin: auto;
	font-size: 16px;
	color: #f8f62f;
	letter-spacing: 0.1em;
}
.backToProjectIndex a:hover{
	background-color: #000;
}





.interview{
    width: 90%;
    max-width: 900px;
    margin: 0 auto;
    
    position: relative;
}
.interview .mainImage{
    width: 100%;
    line-height: 0;
    position: relative;
    z-index: 100;
    
	background-color: rgba(255,255,255,0.1);
}
.interview .mainImage img{
    width: 100%;
    height: auto;
}
.interview .copyArea{
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 110;
    
    line-height: 1.5;
    
    box-sizing: border-box;
    width: 100%;
    padding: 15px 5%;
    
    text-align: center;
    
    letter-spacing: 0.1em;

}
.interview .copyArea .pName{
    font-size: 16px;
    text-shadow: 0 0 5px #000;
    
    display: inline-block;
    padding: 3px 20px;
}
.interview .copyArea .mainCopy{
    font-size: 32px;
    font-weight: bold;

    text-shadow: 0 0 5px #000;
    
    padding-bottom: 12px;
    margin-bottom: 12px;
    
    background: url("img/bg_int_mainCopy.png") no-repeat center bottom;
    background-size: 30px 1px;
    
}
.interview .copyArea .mainCopy .s2{
    font-size: 28px;
    letter-spacing: 0.05em;
}
.interview .copyArea .mainCopy br.ww{
    display: block;
}

.interview .mainImage.wCap{
    margin-bottom: 28px;
}
.interview .mainImageCap{
    position: absolute;
    left: 0;
    bottom: -28px;
    z-index: 120;
    
    box-sizing: border-box;
    width: 100%;
    height: 28px;
    padding-top: 5px;

	background-color: rgba(255,255,255,0.1);
    line-height: 1.5;
    text-align: right;
    font-size: 12px;
}


.interview .summary{
    box-sizing: border-box;
    width: 100%;
    padding: 40px 8%;
    
	background-color: rgba(255,255,255,0.1);
    
    margin-bottom: 75px;
}
.interview .summary p{
    
    font-size: 14px;
    line-height: 2.0;
}


.interview .textArea{
    box-sizing: border-box;
    width: 80%;
    position: relative;
    z-index: 100;
    
    border-top: 1px solid #f8f62f;
	background-color: rgba(255,255,255,0.1);
    
    margin-bottom: 80px;
}
.interview .textArea.ls{
}
.interview .textArea.rs{
    margin-left: 20%;
}
.interview .textArea .text{
    box-sizing: border-box;
    padding: 65px 9% 35px;    
}
.interview .textArea h2{
    box-sizing: border-box;
    
    font-size: 22px;
    letter-spacing: 0.1em;
    line-height: 1.5;
    
    margin-bottom: 50px;    
}
.interview .textArea p{
    font-size: 14px;
    line-height: 2.0;
    
    margin-bottom: 1.5em;
}
.interview .textArea p.note{
    font-size: 13px;
    line-height: 2.0;
    
    margin-bottom: 1.5em;
}
.interview .textArea .name{
    color: #f8f62f;
    font-weight: bold;
}

.interview .textArea .lImg{
    box-sizing: border-box;
    float: left;
    padding: 0 8% 30px 0;
    
    width: 80%;
    max-width: 350px;
    margin-left: -30%;

    position: relative;
    z-index: 110;
}
.interview .textArea .rImg{
    box-sizing: border-box;
    float: right;
    padding: 0 0 30px 8%;
    
    width: 80%;
    max-width: 350px;
    margin-right: -30%;

    position: relative;
    z-index: 110;
}
.interview .textArea .fImg{
    box-sizing: border-box;
    width: 100%;

    position: relative;
    z-index: 110;
}
.interview .textArea .caption{
    box-sizing: border-box;
    padding: 8px 5%;
    
    background-color: #333;
    
    font-size: 13px;
    line-height: 1.5;
}
.interview .textArea .lImg .caption{
    text-align: left;
}
.interview .textArea .lImg .caption.long{
    text-align: left;
    font-size: 12px;
    line-height: 1.7;
    padding-bottom: 12px;
}
.interview .textArea .rImg .caption{
    text-align: right;
}
.interview .textArea .rImg .caption.long{
    text-align: left;
    font-size: 12px;
    line-height: 1.7;
    padding-bottom: 12px;
}
.interview .textArea .fImg .caption{
    text-align: center;
}
.interview .textArea .caption br.ww{
    display: block;
}
.interview .textArea .lImg img,
.interview .textArea .rImg img,
.interview .textArea .fImg img{
    display: block;
    line-height: 0;
    
    width: 100%;
    height: auto;
}

.interview .textArea .caption a{
    color: #f8f62f;
}
.interview .textArea .caption a:hover{
    text-decoration: underline;
}




.backToProjectDetail{
	width: 90%;
	max-width: 900px;
	margin: 0 auto;

    margin-bottom: 20px;
    
    display: flex;
    justify-content: center;
}
.backToProjectDetail a{
    box-sizing: border-box;
	width: 90%;
	max-width: 350px;
	
    padding-left: 30px;
    
	height: 50px;
	
	background-color: #222;
	border: 1px solid #444;

	background-image: url("img/icon_linkBtn_rev.png");
	background-repeat: no-repeat;
	background-position: 12px center;
	background-size: 30px auto;
	
	display: flex;
	flex-direction: row;
	align-items: center;
}
.backToProjectDetail a span{
	display: block;
	margin: auto;
	font-size: 16px;
	color: #f8f62f;
	letter-spacing: 0.1em;
}
.backToProjectDetail a:hover{
	background-color: #000;
}





.showMore{
	width:100%;
}


.showMoreBtn{
    box-sizing: border-box;
    display: block;
    width: 120px;
    height: 30px;
    
    position: relative;
    margin: 0 auto;

	background-color: #222;
	border: 1px solid #444;
    
	font-size: 12px;
	color: #f8f62f;
	letter-spacing: 0.1em;

    line-height: 1.0;
    white-space: nowrap;
    text-align: center;
    
    padding: 8px 20px;
    
    cursor: pointer;


	background-image: url(img/icon_linkBtn_down.png);
	background-repeat: no-repeat;
	background-position: right 6px center;
	background-size: 19px auto;
}


.showMoreBtn.open{
	
	background-image: url(img/icon_linkBtn_up.png);
	background-repeat: no-repeat;
	background-position: right 6px center;
	background-size: 19px auto;
}

.showMoreBtn.open .label{
    font-size: 0;
}
.showMoreBtn.open .label::before{
    font-size: 12px;
    content: "Close";
}


.projectNewsMore{
    box-sizing: border-box;
    width: 100%;

    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}









.concept{
	width: 90%;
	max-width: 670px;
	margin: 0 auto;
}
.concept .content{
	box-sizing: border-box;
	width: 100%;
	padding-left: 16%;
}
.concept .paragraph{
	display: block;
	width: 100%;
	position: relative;
	z-index: 200;
	
	overflow: hidden;
	
	background-repeat: no-repeat;
	background-position: left top;
	background-size: 100% auto;
}
.concept .paragraph p{
	position: absolute;
	left: 100%;
	top: 0;
	width: 100%;
}
.concept .paragraph.p01{
	background-image: url(img/bg_concept_p01.png);
}
.concept .paragraph.p02{
	background-image: url(img/bg_concept_p02.png);
}
.concept .paragraph.p03{
	background-image: url(img/bg_concept_p03.png);
}
.concept .paragraph.copy{
	background-image: url(img/bg_concept_maincopy.png);
}
.concept .paragraph.p01:before {
	content:"";
	display: block;
	padding-top: 45%;
}
.concept .paragraph.p02:before {
	content:"";
	display: block;
	padding-top: 63%;
}
.concept .paragraph.p03:before {
	content:"";
	display: block;
	padding-top: 27%;
}
.concept .paragraph.copy:before {
	content:"";
	display: block;
	padding-top: 7%;
}
.concept .logo{
	width: 45%;
}
.concept .logo img{
	width: 100%;
	height: auto;
}



.process{
	width: 90%;
	max-width: 900px;
	margin: 0 auto;
	
	position: relative;
	z-index: 200;
	
	margin-bottom: 30px;
}
.process.wide{
	margin-bottom: 30px;
}
.process h2{
	box-sizing: border-box;
	display: inline-block;
	
	min-width: 260px;

	padding: 10px 20px;
	
	font-size: 16px;
	color: #fff;
	letter-spacing: 0.1em;
	
	background-color: #333;
	border-bottom: 1px solid #f8f62f;
	
	position: relative;
	z-index: 220;
	
}
.process.wide h2{
	width: 100%;
	
	padding: 10px 20px;
	
	font-size: 16px;
}
.process .bodyArea{
	box-sizing: border-box;
	width: 100%;
	background-color: rgba(255,255,255,0.1);

	position: relative;
	z-index: 210;
	
	margin-top: -22px;
	padding: 50px 35px 30px;
	
	font-size: 14px;
	color: #fff;
	line-height: 1.8;
}
.process.wide .bodyArea{
	margin-top: -16px;
}

.process p a{
	color: #f8f62f;
	text-decoration: underline;
}
.process p a:hover{
	text-decoration: none;
}
.process .chart{
	width: 100%;
}
.process .chart img{
	width: 100%;
	height: auto;
}

.process table{
	box-sizing: border-box;
	
	background-color: #111;

}
.process table th{
	border-top: 1px solid #666;
	background-color: #333;
	
	font-size: 14px;
	line-height: 1.6;
	
	padding: 8px 30px;
	
	text-align: center;
	
	border-left: 2px solid #000;
}
.process table td{
	border-top: 1px solid #666;
	
	font-size: 14px;
	line-height: 1.6;

	padding: 8px 30px;
}
.process table tr:first-child th,
.process table tr:first-child td{
	border-top: none;
}
.process table tr td:nth-child(2n+1){
	background-color: #222;
}





.theme{
	width: 90%;
	max-width: 900px;
	margin: 0 auto;
	
	position: relative;
	z-index: 200;
	
	margin-bottom: 30px;
}
.theme .chart{
	width: 100%;
}
.theme .chart img{
	width: 100%;
	height: auto;
}




.theme ul.category{
	width: 100%;
	
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;

	border-top: 1px solid #f8f62f;
}
.theme ul.category > li{
	width: 100%;

	background-color: rgba(255,255,255,0.1);

	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.theme h2{
	box-sizing: border-box;
	width: 35%;

	padding: 18px 25px;
	
	font-size: 14px;
	color: #fff;
	
	background-color: rgba(51,51,51,1.0);
	border-bottom: 1px solid #f8f62f;
	
}
.theme .bodyArea{
	box-sizing: border-box;
	width: 65%;

	padding: 20px 20px 20px;
	
	color: #fff;
	line-height: 1.8;
	
	font-size: 13px;

	border-bottom: 1px solid #f8f62f;
}
.theme .bodyArea ul{
	list-style-type: disc;
	padding-left: 1em;
}
.theme .bodyArea ul li{
	list-style-type: disc;
	padding-bottom: 10px;
}



.producersIndex{
	width: 90%;
/*	max-width: 630px;*/
	max-width: 840px;
	margin: 0 auto;
	
	position: relative;
	z-index: 200;
	
	margin-bottom: 100px;
}
.producersIndex ul{
    width: 100%;
    
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.producersIndex li{    
    box-sizing: border-box;
/*    width: 30%;*/
    width: 22%;
    margin: 0 1.5%;
    line-height: 0;
    
    margin-bottom: 30px;
    
    
    opacity: 0;
}
/*
.producersIndex li:first-child{
    margin-left: 5%;
}
.producersIndex li:nth-child(3){
    margin-right: 5%;
}
*/



.producersIndex li img{
    width: 100%;
    height: auto;

	transition: all 0.2s linear;
}
.producersIndex li:hover img{
	transform: scale(1.1);
}

.producersDetail{
    width: 100%;
    display: none;
    opacity: 0;
}
.producersDetailContent{
    width: 100%;
    display: none;
}

.producers{
	width: 90%;
	max-width: 900px;
	margin: 0 auto;
	
	position: relative;
	z-index: 200;
    
    padding: 60px 0 50px;
    background-color: rgba(255,255,255,0.1);
	
	margin-bottom: 30px;
    
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.producers.rev{
    flex-direction: row-reverse;
}
.producers .photoArea{
    width: 33%;
    line-height: 0;

    padding-bottom: 30px;
}
.producers .photoArea img{
    width: 100%;
    height: auto;
}
.producers .bodyArea{
    width: 67%;
    
    box-sizing: border-box;
    padding: 0 8%;
}
.producers h1{
    font-size: 22px;
    color: #fff;
    
    line-height: 1.3;
    letter-spacing: 0.15em;
    
    margin-bottom: 40px;
}
.producers h1 .en{
    display: inline-block;
    padding-left: 20px;
	font-family: 'Questrial', sans-serif;
    font-size: 12px;
}
.producers dl{
    width: 100%;
    font-size: 14px;

    line-height: 1.8;
}
.producers dt{
    width: 100%;
    
    font-weight: bold;
    color: #f8f62f;
}
.producers dd{
    width: 100%;
    
    color: #fff;
    margin-bottom: 30px;
}


.backToProducersIndex{
	width: 90%;
	max-width: 900px;
	margin: 0 auto;
    
    display: flex;
    justify-content: center;
}
.backToProducersIndex.upper{
    margin-top: -40px;
    padding: 0 0 30px;

/*    justify-content: flex-end;*/
}
.backToProducersIndex a{
    box-sizing: border-box;
	width: 90%;
	max-width: 160px;
	
    padding-left: 19px;
    
	height: 30px;
	
	background-color: #222;
	border: 1px solid #444;

	background-image: url("img/icon_linkBtn_rev.png");
	background-repeat: no-repeat;
	background-position: 12px center;
	background-size: 19px auto;
	
	display: flex;
	flex-direction: row;
	align-items: center;
}
.backToProducersIndex a span{
	display: block;
	margin: auto;
	font-size: 14px;
	color: #f8f62f;
	letter-spacing: 0.1em;
}
.backToProducersIndex a:hover{
	background-color: #000;
}


.producersFooter{
	width: 100%;
}
.producersFooter .readMore{
	width: 90%;
	max-width: 1000px;
	margin: 0 auto;
	padding-bottom: 50px;
}
.producersFooter .readMore a{
	width: 90%;
	max-width: 260px;
	margin: 0 auto;
	
	height: 30px;
	
	background-color: #222;
	border: 1px solid #444;

	background-image: url(img/icon_linkBtn.png);
	background-repeat: no-repeat;
	background-position: right 6px center;
	background-size: 19px auto;
	
	display: flex;
	flex-direction: row;
	align-items: center;
}
.producersFooter .readMore a span{
	display: block;
	margin: auto;
	font-size: 12px;
	color: #f8f62f;
	letter-spacing: 0.1em;
}
.producersFooter .readMore a:hover{
	background-color: #000;
}




/* --------------------------------------------------
  Common Footer
-------------------------------------------------- */

footer.common{
	width: 100%;
	height: 56px;
	background-color: #1d1d1d;
}

footer.common ul.sns{
	position: absolute;
	right: 0;
	top: 12px;
	
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	justify-content: flex-end;
	align-content: center;
	align-items: center;
}
footer.common ul.sns li{
	box-sizing: border-box;
	width: 32px;
	margin-right: 12px;
	
	line-height: 0;
}
footer.common ul.sns li a{
	display: block;
	width: 100%;
}
footer.common ul.sns li img{
	width: 100%;
	height: auto;
}
footer.common ul.sns li a:hover{
	opacity: 0.8;
	filter: alpha(opacity=80);
}


footer.common .copyright{
	width: 100%;
	font-size: 10px;
	color: #fff;
	text-align: center;
	padding: 20px 0;
}





.pageTop {
	position: fixed;
	bottom: 40px;
	right: 10px;
	
	width: 36px;
	
	z-index: 1100;
}
.pageTop img{
	width: 100%;
	height: auto;
}










/* Common Navigation
------------------------------------------------------------*/
@media only screen and (min-width: 900px){


#commonNavi{
	width: 100%;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 100;
}




ul#globalNavi{
	width: 100%;
	height: 90px;
	position: absolute;
	left: 0;
	top: 0;
	
	z-index: 110;

	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-content: center;
	align-items: center;
}
ul#globalNavi > li{
	height: 100%;
	font-size: 13px;
}
ul#globalNavi > li > a{
	box-sizing: border-box;
	width: 100%;
	height: 100%;
	padding: 0 20px;

	display: flex;
	align-items: center;
	align-content: center;
	justify-content: center;
}
ul#globalNavi > li > a span{
	box-sizing: border-box;
	display: inline-block;
	
	font-size: 13px;
	color: #fff;
	font-family: 'Questrial', sans-serif;
	
	padding: 10px 0;
	white-space: nowrap;
	line-height: 1.0;
	
	letter-spacing: 0.2em;
	
}
ul#globalNavi > li.current > a span,
ul#globalNavi > li > a:hover span{
	border-bottom: 1px solid #f8f62f;
}




}




/* Common Navigation Responsive Structure
---------------------------------------------------------------------------------------------------------------------*/

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

#commonNavi {
	display: none;
}
	
	
	

	
	
	

#menuOverlay {
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.6);
	display: none;
	position: fixed;
	z-index: 9997;
}

#switchBtnArea {
	width: 100%;

	position: relative;
}

#switchBtnArea #switchBtn {
	top: 15px;
	right: 0;
	width: 60px;
	height: 60px;
	display: block;
/*	background: #18d6c6;*/
	
/*	border: 1px solid #fff;*/
	
	position: fixed;

	z-index: 9998;
	
/*	background-color: rgba(0,0,0,0.2);*/
}

#switchBtnArea #switchBtn span {
	left: 32%;
	width: 36%;
	height: 2px;
	display: block;
	position: absolute;
	background-color: #fff;
	border-radius: 5px;
	transition: all 0.2s linear;
}
#switchBtnArea #switchBtn span:nth-of-type(1) {
	top: 22px;
	-webkit-transform: rotate(0);
	transform: rotate(0);
}
#switchBtnArea #switchBtn span:nth-of-type(2) {
	top: 29px;
	-webkit-transform: scale(1);
	transform: scale(1);
}
#switchBtnArea #switchBtn span:nth-of-type(3) {
	bottom: 22px;
	-webkit-transform: rotate(0);
	transform: rotate(0);
}

#switchBtnArea #switchBtn.btnClose {
	background: transparent;
}
#switchBtnArea #switchBtn.btnClose span:nth-of-type(1) {
	top: 29px;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	background-color: #fff;
}
#switchBtnArea #switchBtn.btnClose span:nth-of-type(2) {
	-webkit-transform: scale(0);
	transform: scale(0);
}
#switchBtnArea #switchBtn.btnClose span:nth-of-type(3) {
	bottom: 29px;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	background-color: #fff;
}

#rwdMenuWrap {
	top: 90px;
	right: -200px;
	width: 200px;
	height: 100%;
	background-color: #000;
	overflow: auto;
	position: fixed;
	z-index: 9997;
}

#rwdMenuWrap ul#globalNavi {
	width: 100%;
	padding: 0 0 0;
}
#rwdMenuWrap ul#globalNavi li {
	width: 100%;
	border-bottom: 1px solid #f8f62f;
}
#rwdMenuWrap ul#globalNavi li:first-child {
	border-top: 1px solid #f8f62f;
}

#rwdMenuWrap ul#globalNavi li a {
	padding: 15px 25px;
	text-align: left;
	display: block;
	background-color: rgba(255,255,255,0.1);
	position: relative;
	
	color: #fff;
	
	font-size: 12px;
	font-family: 'Questrial', sans-serif;
	letter-spacing: 0.2em;
}

#rwdMenuWrap ul#globalNavi li a:after {
	content: '';
	margin-top: -4px;
	top: 50%;
	right: 15px;
	width: 8px;
	height: 8px;
	color: #888;
	font-size: 1em;
	font-weight: bold;
	line-height: 1.2em;
	display: block;
	position: absolute;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}




}














/* Responsive Structure
---------------------------------------------------------------------------------------------------------------------*/

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


header.common {
	height: 90px;
}
header.common #logoJSPARC{
	position: relative;
	margin: 0 auto;
	left: auto;
}

header.common #logoJAXA{
	width: 70px;
	top: 15px;
	
	right: auto;
	left: 15px;
}

#homeMainImage .scrollBtn{
	display: block;
	width: 36px;
	height: 21px;
	left: 46%;
	bottom: 20px;
}

#homeLead p{
	font-size: 13px;
	line-height: 2.0;
}



#projectIndex li,
.projectIndex li{
	margin-bottom: 35px;
}

#projectIndex li .titleArea,
.projectIndex li .titleArea{
	background-size: 26px auto;
	
}



#subPage .lead{
	
	padding: 35px 30px;
	font-size: 13px;
	margin-bottom: 25px;
}



.process{
	margin-bottom: 30px;
}
.process.wide{
	margin-bottom: 60px;
}
.process h2{
	padding: 10px 20px;
	font-size: 15px;
}
.process.wide h2{
	padding: 10px 20px;
	font-size: 18px;
}
.process .bodyArea{
	margin-top: -22px;
	padding: 50px 25px 30px;
	
	font-size: 13px;
}
.process.wide .bodyArea{
	margin-top: -16px;
}

.process table th{
	font-size: 13px;
	padding: 8px 30px;
}
.process table td{
	font-size: 13px;
	padding: 8px 30px;
}




}





/* ---------------------------------------------------------------------------------------------------------------------*/

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

#whatsnew{
	width: 80%;
}

#whatsnew ul li{
	
	font-size: 12px;
	line-height: 1.8;
	
	padding: 30px 0;
	
	flex-wrap: wrap;
}
#whatsnew ul li:first-child{
	padding-top: 15px;
}
#whatsnew ul li .date{
	width: 100%;
	padding: 0;
	
	font-size: 13px;
	margin-bottom: 15px;
}


#projectIndex li,
.projectIndex li{
	width: 47%;
	margin-bottom: 30px;
}
#projectIndex li .titleArea,
.projectIndex li .titleArea{
	background-size: 30px auto;
	
}
#projectIndex li .titleArea h2,
#projectIndex li .titleArea h3,
.projectIndex li .titleArea h2,
.projectIndex li .titleArea h3{
	font-size: 13px;
	margin-bottom: 5px;
}
#projectIndex li .titleArea .desc,
.projectIndex li .titleArea .desc{
	font-size: 10px;
}



.theme ul.category{
	border-top: none;
}
.theme ul.category > li{
	width: 100%;
}

.theme h2{
	width: 100%;
	padding: 12px 20px;
	
	font-size: 13px;
	color: #fff;
}
.theme .bodyArea{
	box-sizing: border-box;
	width: 100%;

	padding: 15px 20px 15px;
	
	font-size: 12px;

	border-bottom: none;
}


}




/* ---------------------------------------------------------------------------------------------------------------------*/

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

#aboutIndex{
	padding-top: 60px;
}

#aboutIndex ul{
	width: 70%;
}
#aboutIndex li{
	width: 100%;
	
	padding-bottom: 20px;
}





.projectDetail .header{
    height: auto;
    
    padding-left: 0;
    
    padding-top: 50px;
    
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
    align-items: center;
    
    margin-bottom: 50px;
}


.projectDetail .logo{
    margin: 0 auto;
    max-width: 100%;
    
    padding-top: 40px;
    
    text-align: center;
}
.projectDetail .logo img{
    width: auto;
    height: 45px;
}


.projectDetail h1{    
    font-size: 24px;
    
    letter-spacing: 0.05em;
    
    margin-bottom: 20px;
}
.projectDetail .cName{
    font-size: 14px;
    line-height: 1.3;
    
    margin-bottom: 0px;
}
.projectDetail .cLink{
    margin-bottom: 50px;
}
.projectDetail .cLink a{
    font-size: 12px;
    line-height: 1.3;
    
    letter-spacing: 0.05em;    
}


.projectDetail .outline{
    
    display: flex;
    
    flex-wrap: wrap;
    flex-direction: column-reverse;
    
    justify-content: space-between;

    margin-bottom: 40px;
}
.projectDetail .outline .body{
    width: 100%;
    
}
.projectDetail .outline .body.reference p.reflead{
    text-align: left;
}
.projectDetail .outline .image{
    width: 100%;
    
    margin-bottom: 20px;
}
.projectDetail .summary{
    width: 100%;
    font-size: 13px;
    line-height: 1.6;
    
    padding-bottom: 0.5em;
    
    margin-bottom: 10px;
}
.projectDetail .role{
    padding: 15px 20px;
}
.projectDetail .role .jaxa img{
    width: 70px;
}
.projectDetail .role p{
    font-size: 12px;
    line-height: 1.7;
}

.projectDetail .summary ul li{
    font-size: 13px;
}

.projectDetail h2{
    
    font-size: 15px;

    letter-spacing: 0.2em;
    line-height: 1.3;

    padding-bottom: 5px;

    margin-bottom: 15px;
    
}
.projectDetail .contents{
    
    margin-bottom: 20px;
}
.projectDetail .fbx{
    width: 100%;
    padding-bottom: 40px;
}
.projectDetail .wbx{
    width: 100%;
    padding-bottom: 40px;
}
.projectDetail .nbx{
    width: 100%;
    padding-bottom: 40px;
}

.projectDetail .interview{
    height: 120px;
    
	background-position: right 10px center;
	background-size: 27px auto;
}
.projectDetail .interview .image{

    width: 160px;
}
.projectDetail .interview .title{
}
.projectDetail .interview .title h3{
    padding: 0 50px 0 20px;
    
    font-size: 14px;
    line-height: 1.5;
    color: #fff;
}
.projectDetail .interview .title h3.long{
    font-size: 12px;
}
.projectDetail .interview .title h3 br.ww{
    display: none;
}

.projectDetail .movie{
    
    height: 120px;
}
.projectDetail .movie .image{

    width: 100%;
    

    top: -50%;
}
.projectDetail .movie.mainArea{
    height: auto;
}
.projectDetail .movie.mainArea .image{
    top: 0;
}
.projectDetail .movie .image img{
    width: 100%;
    height: auto;
}

.projectDetail .movie .link{
    
    width: 100%;
    height: 120px;
}
.projectDetail .movie .link .icon{

    width: 37px;
    height: 37px;

}

.projectDetail .movie.mainArea .link{
    align-content: flex-end;
    align-items: flex-end;
    height: 100%;
}
.projectDetail .movie.mainArea .link .icon{
    width: 100%;
    height: 25px;
}
.projectDetail .movie.mainArea .link .icon img{
    width: auto;
    height: 25px;
    
    margin: 0 auto;
}



.projectDetail ul.news li{
    font-size: 13px;
    line-height: 1.7;

    padding-bottom: 0.5em;
}

.backToProjectIndex{

    margin-bottom: 20px;
    
}
.backToProjectIndex a{
	max-width: 300px;
	
    padding-left: 20px;
    
	height: 45px;
	
	background-position: 12px center;
	background-size: 25px auto;
	
}
.backToProjectIndex a span{
	font-size: 14px;
}



.interview .copyArea{
    position: relative;
    left: 0;
    top: 0;
    bottom: auto;
    
    padding: 25px 8% 15px;
    
    text-align: center;
    
    letter-spacing: 0.1em;
    text-shadow: 0 0 7px #000;
}
.interview .copyArea .pName{
    font-size: 12px;
    margin-bottom: 0;
}
.interview .copyArea .mainCopy{
    font-size: 20px;
    font-weight: bold;

    padding-bottom: 12px;
    margin-bottom: 12px;
    
    background-size: 20px 1px;
}
.interview .copyArea .mainCopy .s2{
    font-size: 20px;
    letter-spacing: 0.1em;
}
.interview .copyArea .mainCopy br.ww{
    display: none;
}


.interview .mainImage.wCap{
    margin-bottom: 0;
}
.interview .mainImageCap{
    bottom: 5px;
    
    height: auto;
    padding-top: 0;

	background-color: rgba(255,255,255,0);
    font-size: 11px;
    
    text-shadow: 0 0 5px #000;
}



.interview .summary{
    padding: 10px 8% 30px;
    
    margin-bottom: 50px;
}
.interview .summary p{
    
    font-size: 13px;
    line-height: 2.0;
}


.interview .textArea{
    width: 100%;
    
    margin-bottom: 50px;
}
.interview .textArea.ls{
}
.interview .textArea.rs{
    margin-left: 0;
}
.interview .textArea .text{
    padding: 50px 8% 20px;
}


.interview .textArea h2{
    font-size: 20px;
    
    text-align: center;
    
    margin-bottom: 30px;
}
.interview .textArea p{
    font-size: 13px;
    line-height: 2.0;
    
    margin-bottom: 1.5em;
}
.interview .textArea p.note{
    font-size: 12px;
    line-height: 2.0;
    
    margin-bottom: 1.5em;
}


.interview .textArea .lImg{
    padding: 0 8% 30px 0;
    
    width: 60%;
    margin-left: -16%;
}
.interview .textArea .rImg{
    padding: 0 0 30px 8%;
    
    width: 60%;
    margin-right: -16%;
}
.interview .textArea .fImg{
    width: 100%;
}
.interview .textArea .caption{
    padding: 8px 5%;
    
    font-size: 12px;
    line-height: 1.5;
}
.interview .textArea .caption br.ww{
    display: none;
}



.projectDetail .tsl .activity h2{
    padding: 10px 16px;

    font-size: 15px;
}
.projectDetail .tsl .activity .bodyArea{
    padding: 0 20px;
}

.projectDetail .tsl .activity .topic{
    padding: 20px 0;
}
.projectDetail .tsl .activity .topic h3{
    font-size: 15px;
    margin-bottom: 15px;
}

.projectDetail .tsl .activity.reference .links ul{
    width: 96%;
    margin: 0 2%;
}


.projectDetail .tsl .workshop{
    flex-wrap: wrap;
}
.projectDetail .tsl .workshop .detail{
    width: 100%;
    padding: 20px 20px;
}
.projectDetail .tsl .workshop .detail h4{
    font-size: 14px;
    
    margin-bottom: 10px;
    
    text-align: center;
}
.projectDetail .tsl .workshop .detail p{
    font-size: 13px;
    
    text-align: center;
}
.projectDetail .tsl .workshop .logo{
    box-sizing: border-box;
    width: 90%;
    line-height: 0;
    
    padding: 0;
}
.projectDetail .tsl .workshop .logo img{
    border-radius: 5px;
    
    max-width: 200px;
    
    margin: 0 auto;
}
.projectDetail .tsl .workshop .apply{
    width: 100%;
    
    padding: 20px 0;
}
.projectDetail .tsl .workshop .apply a{
    max-width: 150px;

    padding: 8px 10px;
    font-size: 13px;
}



.projectDetail .tsl ul.mentor{
    padding: 0 2%;
    
    padding-top: 30px;
}
.projectDetail .tsl ul.mentor li{
    width: 46%;
    margin: 0 2% 30px;
}
.projectDetail .tsl ul.mentor li .photo{
    margin-bottom: 16px;
}
.projectDetail .tsl ul.mentor li h4{
    font-size: 14px;    
    margin-bottom: 12px;
}
.projectDetail .tsl ul.mentor li p{
    font-size: 12px;
}


.projectDetail .tsl .partners h4{
    
    font-size: 14px;
    margin-bottom: -15px;
}







.backToProjectDetail{

    margin-bottom: 20px;
    
}
.backToProjectDetail a{
	max-width: 300px;
	
    padding-left: 20px;
    
	height: 45px;
	
	background-position: 12px center;
	background-size: 25px auto;
	
}
.backToProjectDetail a span{
	font-size: 14px;
}






.showMoreBtn{
    margin-bottom: 20px;

    padding: 8px 20px;
}






.concept .content{
	padding-left: 5%;
}


.process{
	margin-bottom: 30px;
}
.process.wide{
	margin-bottom: 60px;
}
.process h2{
	padding: 8px 15px;
	font-size: 14px;
}
.process.wide h2{
	padding: 8px 15px;
	font-size: 16px;
}
.process .bodyArea{
	margin-top: -22px;
	padding: 50px 15px 20px;
	
	font-size: 12px;
}
.process.wide .bodyArea{
	margin-top: -16px;
}

.process table th{
	font-size: 12px;
	padding: 5px 10px;
}
.process table td{
	font-size: 12px;
	padding: 5px 10px;
}




}





/* ---------------------------------------------------------------------------------------------------------------------*/

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


#projectIndex li,
.projectIndex li{
	width: 100%;
	margin-bottom: 30px;
}
#projectIndex li .titleArea,
.projectIndex li .titleArea{
	background-size: 38px auto;
}
#projectIndex li .titleArea h2,
#projectIndex li .titleArea h3,
.projectIndex li .titleArea h2,
.projectIndex li .titleArea h3{
	font-size: 14px;
	margin-bottom: 5px;
}
#projectIndex li .titleArea .desc,
.projectIndex li .titleArea .desc{
	font-size: 11px;
}

#homeContact{
	margin-bottom: 120px;
}
#homeContact a{
	width: 70%;
	
	min-height: 50px;
	
	background-position: right 8px center;
	background-size: 28px auto;
}
#homeContact a span{
	font-size: 15px;
}


#homeDownload ul.images{
	margin-bottom: 20px;
}
#homeDownload a{
	min-height: 50px;
	
	background-position: right 8px center;
	background-size: 28px auto;
}
#homeDownload a span{
	font-size: 15px;
}


#subPage .lead{
	
	padding: 25px 20px;
	font-size: 12px;
	margin-bottom: 25px;
}


.producersIndex li{
    width: 30%;
    
    margin-bottom: 20px;
}
.producersIndex li:first-child{
    margin-left: 1.5%;
}
.producersIndex li:nth-child(3){
    margin-right: 1.5%;
}



.producers{
    padding: 40px 0 50px;
    flex-direction: column;
}
.producers.rev{
    flex-direction: column;
}
.producers .photoArea{
    width: 100%;
    box-sizing: border-box;
    padding: 0 8%;
}
.producers .bodyArea{
    width: 100%;
    
    padding-bottom: 30px;
}

.producers h1{
    font-size: 20px;
    
    margin-bottom: 40px;
}
.producers h1 .en{
    font-size: 11px;
}
.producers dl{
    width: 100%;
    font-size: 13px;
    
    line-height: 2.0;
}

.backToProducersIndex a span{
	font-size: 14px;
}


.pageTop {
	bottom: 80px;
	right: 10px;
	
	width: 24px;
}


}






p.qtranxs-available-languages-message{
	width: 95%;
	margin: 0 auto;
	
	padding: 100px 0;
	text-align: center;
}
p.qtranxs-available-languages-message a{
	color: #f8f62f;
	text-decoration: underline;
}
p.qtranxs-available-languages-message a:hover{
	text-decoration: none;
}






.projectDetail .fesTitleArea{
    padding-top: 30px;
    margin-bottom: 120px;
}

.projectDetail .fesTitleArea h1{
    box-sizing: border-box;
    line-height: 0;
    
    width: 90%;
    max-width: 700px;
    
    position: relative;
    overflow: hidden;
    
    background-image: url("img/mainTitle-festival.png");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 100% auto;
    
    margin-bottom: 20px;
}
.projectDetail .fesTitleArea h1::before{
    content: "";
    display: block;
    padding-top: 10%;
}
.projectDetail .fesTitleArea h1 .txt{
    position: absolute;
    left: 100%;
    top: 0;
}

.projectDetail .fesSubtitle{
    text-align: center;
    font-size: 24px;
    line-height: 1.3;
    letter-spacing: 0.05em;
}
.process.event{
    max-width: 1100px;
}
.process.event .bodyArea{
    padding: 30px 40px 30px;
}
.process.event .bodyArea strong.title{
    display: inline;
    font-size: 120%;
    font-weight: bold;
    line-height: 1.0;
    padding: 4px 8px;
    margin: 0 5px;
    border-radius: 5px;
    background-color: #c1392c;
}
.process.event h2{
    font-size: 19px;
    padding-left: 30px;
}
.process.event p{
    font-size: 16px;
}

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

.projectDetail .fesTitleArea{
    padding-top: 20px;
    margin-bottom: 80px;
}
.projectDetail .fesTitleArea h1{
    max-width: 400px;
    margin-bottom: 10px;
}
.projectDetail .fesSubtitle{
    font-size: 13px;
}

.process.event .bodyArea{
    padding: 20px 20px 20px;
}
.process.event h2{
    font-size: 17px;
    padding-left: 20px;
}
.process.event p{
    font-size: 14px;
}


}






.bannerWrapper{
	width: 100%;
	position: absolute;
	left: 0;
	top: 120px;
}

#homeBanner{
	width: 90%;
	max-width: 800px;
	margin: 0 auto;
    
    line-height: 0;
	
	margin-bottom: 150px;
}
#homeBanner a{
    display: block;
    width: 100%;

	filter: drop-shadow(0px 0px 15px rgba(255, 255, 255, 0.7));
    will-change: filter;
}
#homeBanner a:hover{
	filter: drop-shadow(0px 0px 25px rgba(255, 255, 255, 0.9));
}
#homeBanner img{
    width: 100%;
    height: auto;

}
#homeBanner img.pc{
    display: block;
}
#homeBanner img.sp{
    display: none;
}



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

#homeLead{
	padding: 100px 0 0;
	margin-bottom: 100px;
}

#homeBanner{
	margin-bottom: 80px;
}
#homeBanner a{
	filter: drop-shadow(0px 0px 10px rgba(255, 255, 255, 0.7));
}
#homeBanner a:hover{
	filter: drop-shadow(0px 0px 15px rgba(255, 255, 255, 0.9));
}
#homeBanner img.pc{
    display: none;
}
#homeBanner img.sp{
    display: block;
}

}





.headerImage{
	width: 100%;
	line-height: 0;
    
    margin-bottom: 80px;
}
.headerImage img{
    width: 100%;
    height: auto;
}

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

.headerImage{
    margin-bottom: 50px;
}

}



table.fesOutline{
    width: 100%;
    background-color: transparent;
}
table.fesOutline th{
    box-sizing: border-box;
    padding: 10px 10px;
    
    font-weight: bold;
    white-space: nowrap;
    
/*    background-color: rgba(0, 0, 0, 0.2);*/
    background-color: transparent;
    
    border: none;
/*    border-top: 1px solid #000 !important;
    border-bottom: 1px solid #000;*/
}
table.fesOutline th .label{
    box-sizing: border-box;
    display: inline-block;
    width: 100%;
    
    padding: 3px 15px;
    border-radius: 0px;
    background-color: rgba(0, 0, 0, 0.8);
}

table.fesOutline td{
    box-sizing: border-box;
    padding: 10px 10px;

    text-align: left;
    background-color: transparent;

    border: none;
/*    border-top: 1px solid #666 !important;
    border-bottom: 1px solid #666;*/
}
table.fesOutline td a{
    color: #f8f62f;
    border-bottom: 1px solid #f8f62f;
}
table.fesOutline td a:hover{
    border-bottom: none;
}

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

table.fesOutline{
    width: 100%;
}
table.fesOutline th{
    display: block;
    width: 100%;
    text-align: left;
    padding: 10px 0;
}
table.fesOutline th .label{
    padding: 5px 15px 5px 15px;
}
table.fesOutline td{
    display: block;
    width: 100%;
    
    padding: 0 0 20px 15px;
}

}



.tableWrap{
    width: 100%;
    overflow-x: auto;
    padding-bottom: 10px;
}
.tableWrap::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}
.tableWrap::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 5px;
}
.tableWrap::-webkit-scrollbar-thumb {
    background: #f8f62f;
    border-radius: 5px;
    cursor: pointer;
}
.tableWrap::-webkit-scrollbar-thumb:hover {
    background: #5a5a5a;
}

table.timetable{
    width: 100%;
    background-color: transparent;

    min-width: 650px;
}
table.timetable tr.topHD th{
    background-color: #000;
}
table.timetable th{
    border: none;
    padding: 8px 16px;
    background-color: transparent;
    border-bottom: 1px solid #666;
}
table.timetable td{
    padding: 8px 14px;
    background-color: transparent;
    border-top: none;
    border-bottom: 1px solid #666;
}
table.timetable td a{
    color: #f8f62f;
    border-bottom: 1px solid #f8f62f;
}
table.timetable td a:hover{
    border-bottom: none;
}
table.timetable .time{
    white-space: nowrap;
    background-color: rgba(0, 0, 0, 0.3);
}
table.timetable .theme{
    width: 35%;
    background-color: rgba(0, 0, 0, 0.7);
}
table.timetable .name{
    white-space: nowrap;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.5) !important;
}
table.timetable .dept{
    background-color: rgba(0, 0, 0, 0.3);
}



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

table.timetable .theme{
    width: 42%;
}

}



table.whatsnew{
    width: 100%;
    background-color: transparent;
}
table.whatsnew th{
	width: 5%;
    border: none;
    padding: 8px 0;

	text-align: left;
	
	white-space: nowrap;
    background-color: transparent;
}
table.whatsnew td{
	width: 95%;
    border: none;
    padding: 8px 0 8px 24px;

	text-align: left;

	background-color: transparent;
}

table.whatsnew td a{
	color: #f8f62f;
	text-decoration: underline;
}
table.whatsnew td a:hover{
	text-decoration: none;
}


