@charset "UTF-8";


:root {
    --bg: #030303;
    --bg2: #080808;
    --bg3: #0d0d0d;
    --fg: #f0ede8;
    --fg2: #8a857c;
    --fg3: #4a4740;
    --accent: #7ab8b0;
    --accent2: rgba(122, 184, 176, .12);
    --gold: #c8a86e;
    --jp: "Zen Old Mincho", "游明朝", "YuMincho", serif;
    --en: "Cormorant Garamond", "Times New Roman", serif;
    --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --ease: cubic-bezier(.23, 1, .32, 1);
    --fast: cubic-bezier(.4, 0, .2, 1);
}



/***** index *****/





.mv {
	position: relative;
	overflow: hidden;
}
.mv .wrap {padding: 0;}
.mv .inner {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: calc(100% - 40px);
	z-index: 5;
}
.mv .logo {text-align: center}
.mv .logo img {
	max-width: 500px;
	width: 100%;
}
.mv h1 {
	font-size: 3.0em;
	text-align: center;
	/*margin-top: 80px;*/
}
.mv h1 span {margin-right: 5px; display: none;}

@media screen and (max-width: 560px){
	.mv h1 {font-size: 7.2vw;}
}



#index .mv .inner {
	opacity: 0;
	animation: popup 1.4s cubic-bezier(0.22, 1, 0.36, 1) 0.2s forwards;
}
@keyframes popup {
  0% {
    top: 55%;
    opacity: 0;
  }
  100% {
    top: 50%;
  }
  80%, 100% {
    opacity: 1;
  }
}









/*** slider ***/
.mArea {
	height: 60vh;
	min-height: 560px;
	position: relative;
}
.mArea::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: radial-gradient(ellipse at center,  rgba(0,0,0,0) 0%,rgba(0,0,0,1) 100%);
	mix-blend-mode: multiply;
	z-index: 3;
}
.mArea::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: radial-gradient(ellipse at center,  rgba(0,0,0,0) 0%,rgba(0,0,0,1) 100%);
	mix-blend-mode: multiply;
	z-index: 2;
}

#slider {height: 100%;}
.mArea .swiper-slide {}
.mArea .swiper-slide .box {width: 100%; height: 100%;}
/*.mArea .swiper-slide .box .imgArea {width: 100%; height: 100%;}*/
.mArea .swiper-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}



.swiper {width: 100%; height: 100%;}
.swiper-slide-active .swiper-img,
.swiper-slide-duplicate-active .swiper-img,
.swiper-slide-prev .swiper-img {
  animation: zoomUp 7s linear 0s normal both;
}
@keyframes zoomUp {
  0% {
    transform: translateX(-2%) scale(1.04);
  }
  100% {
    transform: translateX(2%)  scale(1.04);
  }
}
.swiper-slide, .swiper-img {width: 100%; height: 100%;}
.swiper-slide img {
  height: 100%;
  width: 100%;
	object-fit: cover;
	object-position: center;
}




.in_ePage .mArea {
	height: 30vh;
	min-height: 300px;
}
.in_ePage .mv .logo img {width: 180px;}


/*** slider ***/










.sign {width: calc(100% - 400px)}
.sign ul {margin-top: 20px; border-top: 1px solid #333; padding-top: 20px}
.sign ul li {display: flex; align-items: center; justify-content: space-between;}
.sign ul li:not(:last-child) {margin-bottom: 20px;}

.sign ul li:first-child {justify-content: flex-end}
.sign ul li:first-child > span {display: inline-block;}
.sign ul li:first-child > span input {margin-right: 5px;}
.sign ul li:first-child > span:not(:first-child) {margin-left: 10px;}

.sign ul li > div {}
.sign ul li > div:first-child { width: 50px}
.sign ul li > div:first-child::after {content: '：';}
.sign ul li > div:last-child {width: calc(100% - 50px)}


@media screen and (max-width: 748px){
	#index .btmArea .fbox01 {display: block;}
	.contact {margin: auto;}
	.sign {width: 100%; margin-top: 40px;}
}


@media screen and (max-width: 360px){}

/***** index *****/




/*** permission ***/
#permission {}
.permissionArea {
	position: relative;
	border: 1px solid #333;
	box-sizing: border-box;
	padding: 50px;
	
	background: var(--bg2);
	border: 1px solid rgba(255,255,255,0.06);
	
}
.permissionArea::before {
	 content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(196, 154, 60, 0.5), transparent);
opacity: 0.5;
}

.permissionArea h3 {
	margin-bottom: 20px;
	font-size: 1.4em;
	font-weight: 500;
	text-align: center;
}
.permissionArea > ul {
	
}
.permissionArea > ul > li {margin-left: 20px;}
.permissionArea > ul > li:not(:last-child) {margin-bottom: 15px;}
.permissionArea > ul > li > dl {}
.permissionArea > ul > li > dl > dt {position: relative; font-weight: 500; margin-bottom: 5px;}
.permissionArea > ul > li > dl > dt::before {
	content: '■';
	position: absolute;
	right: calc(100% + 5px);
	top: 0;
	color: var(--fg3);
}
.permissionArea > ul > li > dl > dd {
	color: var(--fg2);
}

@media screen and (max-width: 520px){
	#permission main {margin-bottom: 30px;}
}

@media screen and (max-width: 500px){
	#permission .wrap {padding: 0 15px;}
}
@media screen and (max-width: 680px){
	.permissionArea {padding: 15px;}
	.permissionArea h3 {padding-top: 30px; margin-bottom: 40px;}
	.permissionArea h3 br.sp {display: inline-block;}
}

/*** permission ***/






ul.shtArea { /*border: 3px solid #333;*/ box-sizing: border-box; }
ul.shtArea > li {
	box-sizing: border-box;
	/*
	background: rgba(255,255,255,0.03);
	*/
	background: var(--bg3);
	/*border-radius: 5px;*/
	padding: 10px;
	/*padding: 30px;*/
	border: 1px solid rgba(255,255,255,0.06);
	position: relative
}

/*
ul.shtArea > li::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(196, 154, 60, 0.5), transparent);
opacity: 0.5
}
*/

ul.shtArea > li:not(:last-child) {
	
	margin-bottom: 10px;
}
ul.shtArea > li > dl {display: flex; justify-content: space-between;}

ul.shtArea > li > dl > dt, ul.shtArea > li > dl > dd {
	box-sizing: border-box;
	padding: 20px 10px;
}
@media screen and (max-width: 940px){
	ul.shtArea > li > dl > dt, ul.shtArea > li > dl > dd {padding: 30px 15px}
}

ul.shtArea > li > dl > dt {
	/*width: 150px;*/
	width: 170px;
	font-weight: 600;
	/*border-right: 1px solid rgba(0,104,182, 0.7);*/
	/*border-right: 1px solid var(--accent);*/
	text-align: center;
	/*color: #0068b6;*/
	color: var(--accent);
	/*color: var(--fg);*/
	/*font-size: 1.1em;*/
	letter-spacing: 0.1em;
}

ul.shtArea > li > dl > dt small {font-size: 11px; width: 100%; display: inline-block; letter-spacing: 0;}



ul.shtArea > li > dl > dd {
	/*width: calc(100% - 160px);*/
	width: calc(100% - 180px);
	color: var(--fg);
}

@media screen and (max-width: 748px){
	ul.shtArea > li > dl {display: block;}
	ul.shtArea > li > dl > dt, ul.shtArea > li > dl > dd {width: 100%;}
	ul.shtArea > li > dl > dt {
		text-align: left;
		/*padding: 10px 20px 6px;*/
		padding: 10px 0px;
		/*margin-bottom: 15px;*/
		border-right: none;
		font-size: 1.2em;
		border-bottom: 1px solid rgba(122, 184, 176, 0.4);
	}
	#entry ul.shtArea > li > dl > dt {margin-bottom: 5px;}
	ul.shtArea > li > dl > dd {
		/*padding: 0px 20px 20px;*/
		padding: 10px 0px;
	}
	ul.shtArea > li > dl > dt > span {}
	ul.shtArea > li > dl > dt > span br {display: none;}
	ul.shtArea > li > dl > dt small {position: static; width: auto; margin-left: 5px;}
}
@media screen and (max-width: 420px){
	/*
	ul.shtArea > li > dl > dt {
		padding: 10px 10px 6px;
	}
	ul.shtArea > li > dl > dd {padding: 0px 10px 20px;}
	*/
	ul.shtArea > li > dl > dt, ul.shtArea > li > dl > dd  {padding: 5px 0px;}
}



ul.shtArea > li > dl > dd div {}
ul.shtArea > li > dl > dd div input, ul.shtArea > li > dl > dd div select {margin-right: 7px;}
ul.shtArea > li > dl > dd div font {display: inline-block; margin-right: 5px;}
ul.shtArea > li > dl > dd div p.cap {margin-top: 5px;}

@media screen and (max-width: 350px){
	ul.shtArea > li > dl > dd div span { margin-right: 5px}
}


ul.shtArea > li.error {
	/*background:#eaa3a4;*/
}
ul.shtArea > li.error > dl > dt {color: coral;}
ul.shtArea > li.error > dl > dd {color: #fff;}
.errorTxt01 {color: coral; margin-top: 5px;}

.error input[type="text"]:not(:focus), .error input[type="search"]:not(:focus), .error select:not(:focus) {
	border: 1px solid coral;
}




.inList01 {}
.inList01 > li {}
.inList01 > li:not(:last-child) {margin-bottom: 20px; border-bottom: 1px dotted rgba(0,0,0, 0.2); padding-bottom: 15px;}
.inList01 > li:not(.noFlex) > dl {display: flex;}
.inList01 > li:not(.noFlex) > dl > dt {
	/*width: 80px;*/
	width: 100px;
}
.inList01 > li:not(.noFlex) > dl > dt, .fbTxt01 {font-weight: 500; color: var(--fg); }

.inList01 > li:not(.noFlex) > dl > dd {
	/*width: calc(100% - 80px);*/
	width: calc(100% - 100px);
}

.inList01 > li.noFlex > dl {}
.inList01 > li.noFlex > dl dt {margin-bottom: 10px; }


@media screen and (max-width: 540px){
	.inList01 > li:not(.noFlex) > dl > dt { width: 60px;}
	.inList01 > li:not(.noFlex) > dl > dd {width: calc(100% - 60px);}
}

@media screen and (max-width: 370px){
	.egContact ul.inList01 ul.inList01 > li:not(.noFlex) > dl {display: block;}
	.egContact ul.inList01 ul.inList01 > li:not(.noFlex) > dl > dt {margin-bottom: 5px;}
	.egContact ul.inList01 ul.inList01 > li:not(.noFlex) > dl > dd {width: 100%;}
}

.inList02 {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
}
.inList02 li {margin: 0px 15px 15px 0;}


.inList03 li:not(:last-child) {margin-bottom: 15px;}


.inList04 {}
.inList04 > li {}
.inList04 > li:not(:last-child) {margin-bottom: 15px;}
.inList04 > li > dl {}
.inList04 > li > dl > dt {
	font-weight: 500;
	margin-bottom: 5px;
	border-bottom: 1px solid rgba(0, 0, 0, 0.2);
	/*color: #0068b6;*/
	color: #4C7683;
	color: var(--fg);
}
.inList04 > li > dl > dt::before {
	content: '■';
	display: inline-block;
	margin-right: 5px;
	color: var(--fg3);
}

.inList04 > li > dl > dd {}





ul.shtArea > li.listArea01 dl dd   {
	/*margin-bottom: 0;*/
	/*padding-bottom: 15px;*/
}
/*
li.listArea01 > dl > dd {padding-bottom: 15px!important; position: relative;}
*/
.leftBrd dt {position: relative;}


.leftBrd dt::before {
	content: '';
	width: 1px;
	height: calc(100% - 15px);
	background: #333;
	position: absolute;
	top: 0;
	right: 0;
}
li.listArea01 > dl > dd ul.inList02 {border-left: none;}


.schBtn {display: inline-block; margin-left: 10px; margin-right: 0;}
.schBtn a {background: #2a9c0b; display: block; border-radius: 5px; padding: 0 10px; color: #fff; font-size: 0.9em; letter-spacing: 0.1em; transition: all 0.3s ease;}
.schBtn a:hover{opacity: 0.6;}



.access {}
ul.shtArea > li.access > dl > dd > div:not(:first-child) {margin-top: 15px; padding-top: 20px; border-top:1px solid #333;}

.access .part01 {}
.access .part01 span {position: relative;}
.access .part01 span small {position: absolute; font-size: 11px; bottom: 100%; left: 0;}

.access .part03 {}
ul.shtArea > li > dl > dd div  div {display: inline-block;}


@media screen and (max-width: 580px){
.access .part01 span {display: block; }
.access .part01 span:not(:first-child) {margin-top: 20px;}
}
@media screen and (max-width: 420px){
	.access .part03 > div > span {display: block; margin-right: 0;}
	.access .part03 > div:first-child > span {margin-bottom: 10px;}
	.access .part03 > div:first-child > span input {width: 60px!important;}
}




.payee {}
ul.shtArea > li.payee > dl > dd div > p:not(.cap) {margin-bottom: 20px;}
.payee p.cap {margin-top: 20px!important;}
@media screen and (max-width: 1140px){
	.payee .part02 {display: block; margin-top: 20px;}
}

@media screen and (max-width: 420px){
	
}



ul.resume {}
ul.resume > li {}
ul.resume > li:not(:first-child) {margin-top: 30px;}
ul.resume > li > ul {display: flex; flex-wrap: wrap;}
ul.resume > li > ul > li {position: relative;}



ul.resume > li > ul > li:not(:last-child) {margin-right: 10px;}
ul.resume > li > ul > li small {
	position: absolute;
	bottom: calc(100% + 3px);
	left: 0;
	font-size: 12px;
}

ul.resume > li > ul > li:nth-child(1) {width: calc(25% - 40px);}
ul.resume > li > ul > li:nth-child(2) {width: calc(16% - 40px);}
ul.resume > li > ul > li:nth-child(3) {width: calc(25% - 40px);}
ul.resume > li > ul > li:nth-child(4) {width: calc(25% - 40px);}
ul.resume > li > ul > li:nth-child(5) {width: 120px;}
ul.resume > li > ul > li:nth-child(6) {
	/*width: 10%;*/
	width: 40px;
	text-align: center;
}
ul.resume > li > ul > li:nth-child(6) input {margin-right: 0!important;}

@media screen and (max-width : 733px ){
	ul.resume > li > ul {justify-content: space-between;}
	ul.resume > li > ul > li {width: calc(50% - 5px)!important; margin-top: 20px; display: flex; text-align: left!important;}
	ul.resume > li > ul > li:not(:last-child) {margin-right: 0;}
	ul.resume > li > ul > li small {position: static; display: inline-block; margin-right: 5px; width: 60px;}
	ul.resume > li > ul > li small + input {width: calc(100% - 60px)}
}
@media screen and (max-width: 400px){
	ul.resume > li > ul > li {width: 100%!important;}
	ul.resume > li > ul > li:nth-child(5), ul.resume > li > ul > li:nth-child(6) {width: 100%!important;}
}


.period {}
.period font {font-size: 0.8em;}
.period input {margin-right: 0px!important}



.reason {}
.reason .leftBrd dd {padding-bottom: 0!important;}


.upPic > dl > dd > div {/*box-sizing: border-box; padding: 30px;*/ display: flex; /*justify-content: space-between;*/}

.upPic > dl > dd > div > .leftArea {}
.upPic > dl > dd > div > .leftArea dl {}
.upPic > dl > dd > div > .leftArea dl > dt {}
.upPic > dl > dd > div > .leftArea dl > dt span {margin-right: 0}
.upPic > dl > dd > div > .rightArea { /*width: calc(100% - 300px)*/}
.upPic > dl > dd > div > .rightArea div.imgArea {
	width: 120px;
	box-sizing: border-box;
	
	height: 100%;
	min-height: 150px;
	/*min-height: 180px;*/
	/*margin: auto;*/
	text-align: center;
	margin-left: 50px;

	
}

.upPic > dl > dd > div > .rightArea div.imgArea::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: 2px solid #333;
	box-sizing: border-box;
}

.upPic > dl > dd > div dl {/*display: flex; align-items: center;*/}
.upPic > dl > dd > div dl > dt {/*font-weight: 500;*/ /*margin-right: 30px; width: 300px;*/ margin-bottom: 15px;}

.upPic > dl > dd > div dl > dd {background: #eee; box-sizing: border-box; padding: 10px; /*width: calc(100% - 300px);*/}


#app {/*display: flex; align-items: center;*/ display: block;}

#app label {
    padding: 10px 10px;
    color: #ffffff;
    background-color: #384878;
    cursor: pointer;
	
	width: 100%;
	display: block;
	box-sizing: border-box;
	text-align: center;
	
}

#app input[type="file"] {
    display: none;
}

#app p {
    margin: 10px 0 0 0px;
	font-size: 12px;
}


@media screen and (max-width: 440px){
	.upPic > dl > dd > div {display: block;}
	.upPic > dl > dd > div > .leftArea {width: 100%; margin-bottom: 20px;}
	.upPic > dl > dd > div > .rightArea {width: 100%; display: block;}
	.upPic > dl > dd > div > .rightArea div.imgArea {margin: auto; display: block; }
}




#agree { max-width: 520px; width: 100%; margin: auto; margin-bottom: 50px; padding: 0 35px; box-sizing: border-box; display: flex; justify-content: center;}

#agree label div {display: flex; justify-content: space-between;  position: relative; }
#agree label span {display: inline-block; margin-left: 5px;}


.nextBtn {}
.nextBtn a {}
.nextBtn a.noncheck {
	pointer-events: none;
	opacity: 0.3;
}


.allNeed {
	text-align: center;
	margin-bottom: 25px;
	font-size: 1.1em;
	/*color: #E30307;*/
	color: coral;
}


.aviInfo01 {}
ul.shtArea > li.aviInfo01 > dl > dd div div {display: block; margin-top: 5px;}

.skill {}
.skill .other {margin-top: 20px; width: 100%;}
.skill .other label {display: flex;}
/*.skill .other input {width: calc(100% - 170px)}*/
.skill .other label > div {width: calc(100% - 170px)}
@media screen and (max-width: 420px){
	.skill .other label {display: block;}
	.skill .other label > div {display: block; width: 100%; margin-top: 5px;}
}


/*
.awareness {}
.awareness .other {
	margin-left: 10px;
	display: none;
}
.awareness .other.chose {display: inline-block; }
*/
.awareness {}
.awareness .other {
	/*margin-left: 10px;*/
	display: none;
	width:30%;
}
.awareness .other input {margin-right: 0!important; }
.awareness .other.chose {display: inline-block; }

@media screen and (max-width: 1080px){
	.awareness .other { margin-top: 10px; width: 100%; max-width: 300px;}
}
@media screen and (max-width: 480px){
	.awareness select {width: 100%;}
}








/* confirm */
.cfmList01 {}
.cfmList01 > li:not(:last-child) {
	margin-bottom: 5px;
	padding-bottom: 5px;
	border-bottom: 1px dotted rgba(0, 0, 0, 0.2);
}

#confirm .skill .other > div {display: block!important;}


span.inlName + span {display: inline-block;}
span.inlName {margin-right: 5px;}



/* complete */

#complete {min-height: 100vh;}
.finish {}
.finish div {
	text-align: center;
	font-size: 2em;
	letter-spacing: 0.1em;
	font-weight: 500;
	margin-bottom: 20px;
}
.finish p {text-align: center; color: var(--fg2);}


.contact {}
.contact .inWrap  {
	position: relative;
	max-width: 800px;
	width: calc(100% - 40px);
	margin: 40px auto 40px;
	box-sizing: border-box;
	padding: 50px 30px;
	background: var(--bg3);

	border: 1px solid rgba(255,255,255,0.06);
	text-align: center;
}



.contact .inWrap::after {
	content: '';
   background: linear-gradient(90deg, transparent, var(--accent), transparent);
    height: 1px;
    left: 50%;
    position: absolute;
    top: 0;
    transform: translate(-50%);
    width: 280px;
}

/*
.contact .inWrap {
	box-sizing: border-box;
	border: 1px solid #000;
	padding: 30px 10px;
	position: relative;
	text-align: center;
}
*/
.contact .inWrap .cTitle {

	font-size: 1.8em;
	font-weight: 500;


	box-sizing: border-box;
	padding: 0 10px;
	margin-bottom: 20px;

}
.contact .inWrap .cEmail {margin-top: 20px;}
@media screen and (max-width: 480px){
	.contact .inWrap  {
		padding: 30px 20px;
	}
	.contact .inWrap .cTitle {font-size: 1.5em;}
}





.pSite { margin-top: 5px; display: block!important;}
.pSite a {font-size: 0.8em;  position: relative; color: var(--fg);}
.pSite a::after {
	content: '';
	position: absolute;
	width: 100%;
	height: 1px;
	top: 100%;
	left: 0;
	background: var(--fg);
	transition: all 0.3s ease;
}
.pSite a:hover::after{
	width: 0;
}

.pSite a span {font-weight: 400; letter-spacing: 0.05em; display: inline-block;}
.pSite a span::before {
	content: '';
	width: 14px;
	height: 14px;
	display: inline-block;
	background: url("../images/newWindow.svg") no-repeat center center;
	margin-right: 5px;
	position: relative;
	top: 2px;
}






/**** テスト用 ****/
#testIndex {min-height: 100vh}
.testtopTxt {font-size: 2em; font-weight: bold; text-align: center; margin-bottom: 50px; color: #666 /*rgba(230,0,18,1)*/;}

ul.producers {
	display: flex;
	justify-content: space-between;
	max-width: 780px;
	width: 100%;
	margin: auto;
}
ul.producers > li {
	width: calc(33.33% - 10px);
	max-width: 240px;
	box-sizing: border-box;
	padding: 10px;
	border-radius: 5px;
	background: #f1f3f4;
}
ul.producers > li div {display: block;}
ul.producers > li div.tArea {margin-top: 5px;}
ul.producers > li div.tArea span {display: block; text-align: center; margin-right: 0; font-weight: 500;}

ul.producers > li a {transition: all 0.3s ease;}
ul.producers > li a:hover {opacity: 0.5;}

ul.producers > li a div.tArea span.pName {font-size: 0.8em; color: #181818;}
ul.producers > li a div.tArea span.pTitle {color: #0068b6;}



@media screen and (max-width: 730px){
	ul.producers {display: block;}
	ul.producers > li {width: 100%; margin-bottom: 15px; max-width: none;}
	ul.producers > li a {display: flex; align-items: center;}
	ul.producers > li a .tArea {text-align: center; box-sizing: border-box; padding: 0 0px 0 20px;}
	ul.producers > li div.tArea span {text-align: left;}
}
@media screen and (max-width: 600px){
	ul.producers > li a .imgArea {width: 30vw;}
	ul.producers > li a .tArea { padding: 0 0px 0 10px;}
}




/*****************/





.eLogo {text-align: center; margin-top: 50px;}

.eLogo .imgArea {opacity: 1; transition: all 0.5s ease;}
.eLogo.active .imgArea {opacity: 1;}


.imgArea video {width: 100%;}







#player2 {}
#player2 {width: 100%}

.movieArea {
	box-sizing: border-box;
	padding: 20px;
	/*border: 1px solid #666;*/
	border-radius: 20px;
	background: rgba(0,0,0,0.05);
	box-shadow: 0px 3px 5px 1px rgba(0, 0, 0, 0.2);
	margin-bottom: 60px;
}

.movieArea .video {
	border-radius: 16px;
	overflow: hidden;
}

.movieArea .tArea {margin-top: 15px;}
.movieArea .tArea dl{}
.movieArea .tArea dl dt{margin-bottom: 10px;}
.movieArea .tArea dl dt em{display: block; font-style: normal; font-size: 1.6em; font-weight: 500; color: #18277C;}
.movieArea .tArea dl dt em small {font-size: 0.6em;}
.movieArea .tArea dl dt span {display: block; font-size: 0.9em;}
.movieArea .tArea dl dd{}
@media screen and (max-width: 640px){
	.movieArea {padding: 10px;}
}



.tests {background: #ffffff0d;}


