@charset "utf-8";
/*=============================================================
 Layout
=============================================================*/
/*=============================================================
pageTtl
=============================================================*/
#mainTtl {
	width:100%;
	max-width:1040px;
	margin:20px auto 0;
	padding:0;
	position:relative;
}
#mainTtlTxt {
	position:relative;
	z-index:3;
}
#mainTtl h1 {
	width:100%;
	display:table;
	height:520px;
}
#mainTtl h1 span {
	display:table-cell;
	vertical-align:middle;
}
#mainTtl h1 span.ttlLeft {
	text-align:left;
	height:520px;
}
#mainTtl h1 span.ttlRight {
	text-align:right;
	height:520px;
}
#mainTtl #mainBear {
	position:absolute;
	top:30px;
	left:0;
	width:100%;
	text-align:center;
	z-index:2;
	opacity: 0;
	transition-property: all;
	transition-duration: 2s;
}
#mainTtl.start #mainBear {
	opacity: 1;
}
#mainTtl #mainBear p{
	width: 280px;
	margin: 0 auto;
}
#mainTtl #mainBear p img{
	width: 100%;
	-webkit-animation: shake 2s ease-in-out 0s 2, face-forward 1s ease-in-out 4s 1 forwards;
	animation: shake 2s ease-in-out 0s 2, face-forward 1s ease-in-out 4s 1 forwards;
}
@-webkit-keyframes shake {
  0% {
    -webkit-transform: rotate(20deg);
            transform: rotate(20deg);
  }
  50% {
    -webkit-transform: rotate(-20deg);
            transform: rotate(-20deg);
  }
  100% {
    -webkit-transform: rotate(20deg);
            transform: rotate(20deg);
  }
}

@keyframes shake {
  0% {
    -webkit-transform: rotate(20deg);
            transform: rotate(20deg);
  }
  50% {
    -webkit-transform: rotate(-20deg);
            transform: rotate(-20deg);
  }
  100% {
    -webkit-transform: rotate(20deg);
            transform: rotate(20deg);
  }
}
@-webkit-keyframes face-forward {
  0% {
    -webkit-transform: rotate(20deg);
            transform: rotate(20deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}
@keyframes face-forward {
  0% {
    -webkit-transform: rotate(20deg);
            transform: rotate(20deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}
/*=============================================================
section
=============================================================*/
.section {
	padding-top:80px;
}
/*=============================================================
ttl
=============================================================*/
.section .boxH2 {
	width:0;
	border-radius: 5px;
	text-align: center;
	background: url(../img_index/bg_ttl.png) repeat-x center top;
	background-size:100% 200px;
	transition-property: all;
	transition-duration:0.5s;
	margin:0 auto;
	overflow:visible;
}
.section .boxH2 h2 {
	display:inline-block;
	padding:10px 50px;
	position:relative;
	font-size:36px;
	color:#00a0e9;
	line-height:1.25;
	transition-property: all;
	transition-duration: 1s;
	opacity:0;
	white-space:nowrap;
}
.section .boxH2 h2:before {
	content: "";
	position: absolute;
	top: 20px;
	left: 50%;
	display: block;
	width: 49px;
	height: 49px;
	background: url(../img_common/icn_red.png) no-repeat center center;
	opacity:0;
	transition-property: all;
	transition-duration: 0.5s;
}
.section .boxH2 h2:after {
	content: "";
	position: absolute;
	bottom: 20px;
	right: 50%;
	display: block;
	width: 49px;
	height: 49px;
	background: url(../img_common/icn_yellow.png) no-repeat center center;
	opacity:0;
	transition-property: all;
	transition-duration: 0.5s;
}
.section .boxH2.on {
	width:100%;
}
.section .boxH2.on h2 {
	opacity:1.0;
}
.section .boxH2.on h2:before {
	top: -20px;
	left: 0;
	opacity:1.0;
}
.section .boxH2.on h2:after {
	bottom: -20px;
	right: 0;
	opacity:1.0;
}






/*=============================================================
sectionClm
=============================================================*/
.sectionClm {
	clear:both;
	margin:60px 0 15px 0;
}
.sectionClm .boxClm {
	width:100%;
	max-width:750px;
}
.sectionClm .boxClmCenter {
	margin:0 auto;
	opacity:0;
	transition-property: all;
	transition-duration: 1s;
	padding:0 100px 0 0;
}
.sectionClm #sec05.boxClmCenter {
	margin:0 auto;
	opacity:0;
	transition-property: all;
	transition-duration: 1s;
	padding:0 0 0 100px;
}
.sectionClm .boxClmLeft{
	margin:0 auto 0 0;
	opacity:0;
	transition-property: all;
	transition-duration: 1s;
	padding:0 0 0 100px;
}
.sectionClm .boxClmRight{
	margin:0 0 0 auto;
	opacity:0;
	transition-property: all;
	transition-duration: 1s;
	padding:0 100px 0 0;
}

.sectionClm .boxClmCenter.on {
	padding:0;
	opacity:1;
}
.sectionClm .boxClmLeft.on{
	padding:0;
	opacity:1;
}
.sectionClm .boxClmRight.on{
	padding:0;
	opacity:1;
}
.sectionClm #sec05.boxClmCenter.on {
	padding:0;
	opacity:1;
}




.sectionClm .boxClm .boxTop {
	width: 100%;
	height: 50px;
	background: url(../img_common/box_top.png) no-repeat left top;
	position:relative;
}
.sectionClm .boxClm .boxTop:after {
	content: "";
	position: absolute;
	top: -8px;
	left: -8px;
	display: block;
	width: 66px;
	height: 66px;
	background: url(../img_common/line.png) no-repeat center center;
	z-index:2;
}
.sectionClm .boxClm .boxBtm {
	width: 100%;
	height: 50px;
	background: url(../img_common/box_btm.png) no-repeat right bottom;
	position:relative;
}
.sectionClm .boxClm .boxBtm:after {
	content: "";
	position: absolute;
	bottom: -8px;
	right: -8px;
	display: block;
	width: 66px;
	height: 66px;
	background: url(../img_common/line.png) no-repeat center center;
	z-index:2;
}
.sectionClm .boxClm .boxMain {
	position:relative;
	padding:0 30px;
	background-color:#fff;
}
.sectionClm .boxClm .boxMain p {
	color:#ff6600;
	text-align:center;
}
.sectionClm .boxClm .boxMain p span.block {
	display:block;
}
.sectionClm .boxClm .boxMain .note li {
	text-align:left;
	font-size:13px;
	text-indent:-1em;
	padding:10px 0 0 1em;
}
/*=============================================================
bear
=============================================================*/
.bear_def{
	width:138px;
	transition-property: all;
	transition-duration: 1s;
}
.bear_right{
	width:120px;
	transition-property: all;
	transition-duration: 1s;
}
.bear_left{
	width:120px;
	transition-property: all;
	transition-duration: 1s;
}
.bear_jump{
	width:161px;
	transition-property: all;
	transition-duration: 1s;
}
.icn_bearing{
	width:80px;
	transition-property: all;
	transition-duration: 1s;
}
.bear_def img,
.bear_right img,
.bear_left img,
.bear_jump img,
.icn_bearing img{
	width:100%;
	height:auto;
}

/*=============================================================
clm0101
=============================================================*/
#clm0101 .figArea {
}
#clm0101 .figBox {
	width:200px;
	position:absolute;
	top:-30px;
	right:-125px;
	z-index:10;
	transition-property: all;
	transition-duration: 1s;
}
#clm0101 .bear_left{
	position:absolute;
	top:-180px;
	left:-170px;
	z-index:10;
}
#clm0101 .icn_bearing{
	position: absolute;
	top: -20px;
	left: -70px;
	z-index: 10;
}

.on #clm0101 .figArea {
}
.on #clm0101 .figBox {
	top:-90px;
}
.on #clm0101 .bear_left{
	top:-100px;
	left:-60px;
}
.on #clm0101 .icn_bearing{
	top: 20px;
	left: -100px;
}






/*=============================================================
clm0102
=============================================================*/
#clm0102 .figArea {
}
#clm0102 .txtBox {
	width:330px;
	float:right;
}
#clm0102 .figBox {
	width:330px;
	float:left;
}
#clm0102 .figBox img {
	margin:-70px 0 -30px;
	position:relative;
	z-index:3;
}
#clm0102 .bear_right{
	position:absolute;
	top:120px;
	right:50px;
	z-index:10;
}
#clm0102 .icn_bearing{
	position:absolute;
	top:-25px;
	right:-20px;
	z-index:10;
}


.on #clm0102 .bear_right{
	top:70px;
	right:-120px;
}
.on #clm0102 .icn_bearing{
	top:-65px;
	right:-45px;
}


/*=============================================================
clm0103
=============================================================*/
#clm0103 .figArea {
}
#clm0103 .txtBox {
	width:330px;
	float:right;
}
#clm0103 ul {
	width:330px;
	float:right;
}
#clm0103 .figBox {
	width:330px;
	float:left;
}
#clm0103 .figBox img {
}
#clm0103 .bear_def{
	width: 130px;
	position: absolute;
	top: -50px;
	right: 581px;
	z-index: 10;
}
#clm0103 .icn_bearing{
	position: absolute;
	top: 0px;
	right: 734px;
	z-index: 10;
}


.on #clm0103 .bear_def{
	top: 6px;
	right: 781px;
}
.on #clm0103 .icn_bearing{
	top: 208px;
}



/*=============================================================
clm02
=============================================================*/
#clm02 .txtArea {
	position:relative;
}
#clm02 .figBox {
	width: 360px;
	margin:0 auto;
	position:relative;
}
#clm02 .figBox li {
	width:50%;
	float:left;
	display:block;
	cursor:pointer;
}
#clm02 .figBox li img {
	width:100%;
	height:auto;
}
#clm02 .bear_jump{
	position: absolute;
	top: -120px;
	right: -180px;
	z-index: 10;
}
#clm02 .icn_bearing{
	position: absolute;
	top: 100px;
	right: 90px;
	z-index: 10;
}

.on #clm02 .bear_jump{
	top: -70px;
	right: -100px;
}
.on #clm02 .icn_bearing{
	top: 50px;
	right: 20px;
}



#clm02 #winArea{
}

#clm02 .win01{
	position: absolute;
	top: 0px;
	left: -100px;
	z-index:-1;
	width:220px;
	transition-property: all;
	transition-duration: 1s;
}
#clm02 .win02{
	position: absolute;
	top: 0px;
	right: -100px;
	z-index:-1;
	width:220px;
	transition-property: all;
	transition-duration: 1s;
}
#clm02 .win03{
	position: absolute;
	bottom: 0px;
	left: -100px;
	z-index:-1;
	width:220px;
	transition-property: all;
	transition-duration: 1s;
}
#clm02 .win04{
	position: absolute;
	bottom: 0px;
	right: -100px;
	z-index:-1;
	width:220px;
	transition-property: all;
	transition-duration: 1s;
}
#clm02 .open01 .win01{
	z-index:15;
	left: -200px;
	top:-40px;
}
#clm02 .open02 .win02{
	z-index:15;
	right: -200px;
	top:-40px;
}
#clm02 .open03 .win03{
	z-index:15;
	left: -200px;
	bottom:-40px;
}
#clm02 .open04 .win04{
	z-index:15;
	right: -200px;
	bottom:-40px;
}
#clm02 .win01 img,
#clm02 .win02 img,
#clm02 .win03 img,
#clm02 .win04 img{
	width:220px;
	height:auto;
	opacity: 0;
	transition-property: all;
	transition-duration: 1s;
	cursor:pointer;
}
#clm02 .open01 .win01 img,
#clm02 .open02 .win02 img,
#clm02 .open03 .win03 img,
#clm02 .open04 .win04 img{
	opacity: 1;
}


/*=============================================================
clm03
=============================================================*/
#clm03 .figArea {
}
#clm03 .figBox {
	width: 200px;
	position: absolute;
	top: 0px;
	left: 295px;
	z-index: 10;
	transition-property: all;
	transition-duration: 1s;
}
#clm03 .bear_left{
	width: 150px;
	position: absolute;
	bottom: 30px;
	left: -80px;
	z-index: 10;
}
#clm03 .icn_bearing{
	position: absolute;
	top: 0px;
	left: 20px;
	z-index: 10;
}


.on #clm03 .figBox {
	top: -20px;
	left: 645px;
}
.on #clm03 .bear_left{
	bottom: -30px;
	left: -20px;
}
.on #clm03 .icn_bearing{
	top: -90px;
	left: 80px;
}







/*=============================================================
clm04
=============================================================*/
#clm04 .figArea {
}
#clm04 .figBox {
	width:260px;
	position:absolute;
	bottom:20px;
	left:0px;
	z-index:10;
	transition-property: all;
	transition-duration: 1s;
}
#clm04 .bear_right{
	position:absolute;
	top:0px;
	right:-130px;
	z-index:10;
}
#clm04 .icn_bearing{
	position:absolute;
	bottom:-80px;
	right:0px;
	z-index:10;
}

.on #clm04 .figBox {
	bottom:0px;
	left:-125px;
}
.on #clm04 .bear_right{
	top:-70px;
	right:-30px;
}
.on #clm04 .icn_bearing{
	bottom:0;
	right:50px;
}

div.movie-box#mv01 {
	width: 100%;
	max-width: 480px;
	margin-left: auto;
	margin-right: auto;
}
div.movie-box#mv01 .thum {
	width: 100%;
	max-width: 480px;
}
div.video_block {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    border: 3px solid #e4ff00;
    border-radius: 3px;
    background-color: white;
}
div.video_block .left_icon {
    height: 60px;
    margin-right: 5px;
}
div.video_block .link_title {
    margin: 5px;
    padding-right: 10px;
    color: #01c700;
    font-weight: bold;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
}

div.movie-box {
	margin-top: 20px;
}
.movie-box a {
    text-decoration: none;
}
div.thum {
    position: relative;
}
.movie-box .thum:after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background-image: url(../img_common/arw.png);
    background-repeat: no-repeat;
    background-position: center center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.movie-box .thum img {
    border: 1px solid #ccc;
}

@keyframes modal-video-inner {
	from {
	  transform: translate(0, 100px);
	}
	to {
	  transform: translate(0, 0);
	}
}
.modal-video {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.8);
	z-index: 1000000;
	cursor: pointer;
	opacity: 1;
	animation-timing-function: ease-out;
	animation-duration: 0.3s;
	animation-name: modal-video;
	-webkit-transition: opacity 0.3s ease-out;
	-moz-transition: opacity 0.3s ease-out;
	-ms-transition: opacity 0.3s ease-out;
	-o-transition: opacity 0.3s ease-out;
	transition: opacity 0.3s ease-out;
}

.modal-video-close {
	opacity: 0;
}
.modal-video-close .modal-video-movie-wrap {
	-webkit-transform: translate(0, 100px);
	-moz-transform: translate(0, 100px);
	-ms-transform: translate(0, 100px);
	-o-transform: translate(0, 100px);
	transform: translate(0, 100px);
}

.modal-video-body {
	max-width: 800px;
	width: 100%;
	height: 100%;
	margin: 0 auto;
	display: table;
}

.modal-video-inner {
	display: table-cell;
	vertical-align: middle;
	width: 100%;
	height: 100%;
	padding: 5px;
	-moz-box-sizing: border-box !important;
	-webkit-box-sizing: border-box !important;
	box-sizing: border-box !important;
}

.modal-video-movie-wrap {
	width: 100%;
	height: 0;
	position: relative;
	padding-bottom: 56.25%;
	background-color: #333;
	animation-timing-function: ease-out;
	animation-duration: 0.3s;
	animation-name: modal-video-inner;
	-webkit-transform: translate(0, 0);
	-moz-transform: translate(0, 0);
	-ms-transform: translate(0, 0);
	-o-transform: translate(0, 0);
	transform: translate(0, 0);
	-webkit-transition: -webkit-transform 0.3s ease-out;
	-moz-transition: -moz-transform 0.3s ease-out;
	-ms-transition: -ms-transform 0.3s ease-out;
	-o-transition: -o-transform 0.3s ease-out;
	transition: transform 0.3s ease-out;
}
.modal-video-movie-wrap iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.modal-video-close-btn {
	position: absolute;
	z-index: 2;
	top: -35px;
	right: -5px;
	display: inline-block;
	width: 35px;
	height: 35px;
	overflow: hidden;
	border: none;
	background: transparent;
	cursor: pointer;
}
.modal-video-close-btn:before {
	transform: rotate(45deg);
}
.modal-video-close-btn:after {
	transform: rotate(-45deg);
}
.modal-video-close-btn:before, .modal-video-close-btn:after {
	content: "";
	position: absolute;
	height: 2px;
	width: 100%;
	top: 50%;
	left: 0;
	margin-top: -1px;
	background: #fff;
	border-radius: 5px;
	margin-top: -6px;
}




/*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 SP
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
@media only screen and (max-width:767px) {
/*=============================================================
pageTtl
=============================================================*/
#mainTtl {
	margin:-10px auto 0;
	padding-bottom:270px;
}
#mainTtlTxt {
	position:relative;
	z-index:3;
}
#mainTtl h1 {
	width:90%;
	display:table;
	margin:0 auto;
	height:auto;
}
#mainTtl h1 span img {
	width:100%;
	height:auto;
}
#mainTtl h1 span.ttlLeft {
	width:50%;
	height:auto;
	box-sizing:border-box;
	padding:0 1% 0 0;
}
#mainTtl h1 span.ttlRight {
	width:50%;
	height:auto;
	box-sizing:border-box;
	padding:0 0 0 2%;
}
#mainTtl #mainBear {
	top:auto;
	bottom:0;
}
#mainTtl.start #mainBear {
	opacity: 1;
	top:auto;
	bottom:30px;
}
#mainTtl #mainBear p {
	width:166px;
	margin:0 auto;
}
#mainTtl #mainBear p img {
	width:100%;
	height:auto;
}
/*=============================================================
ttl
=============================================================*/
.section .boxH2 h2 {
	margin:0 10px;
	padding:10px 25px;
	font-size:18px;
}
.section .boxH2 h2 span {
	display:block;
}
.section .boxH2 h2:before {
	top: -8px;
	width: 25px;
	height: 25px;
	background: url(../img_common/icn_red.png) no-repeat center center;
	background-size:25px 25px;
}
.section .boxH2 h2:after {
	bottom: -8px;
	width: 25px;
	height: 25px;
	background: url(../img_common/icn_yellow.png) no-repeat center center;
	background-size:25px 25px;
}
.section .boxH2.on h2:before {
	top: -8px;
	width: 25px;
	height: 25px;
	background: url(../img_common/icn_red.png) no-repeat center center;
	background-size:25px 25px;
}
.section .boxH2.on h2:after {
	bottom: -8px;
	width: 25px;
	height: 25px;
	background: url(../img_common/icn_yellow.png) no-repeat center center;
	background-size:25px 25px;
}
/*=============================================================
sectionClm
=============================================================*/
.sectionClm {
	margin:40px 0 10px 0;
}
.sectionClm .boxClm {
	width:100%;
	max-width:750px;
}
.sectionClm .boxClmCenter {
	margin:0 auto;
	padding:0;
}
.sectionClm .boxClmLeft{
	margin:0 auto;
	padding:0;
}
.sectionClm .boxClmRight{
	margin:0 auto;
	padding:0;
}
.sectionClm .boxClm .boxTop {
	height: 25px;
	background: url(../img_common/box_top.png) no-repeat left top;
	background-size:auto 25px;
}
.sectionClm .boxClm .boxTop:after {
	top: -4px;
	left: -4px;
	width: 33px;
	height: 33px;
	background: url(../img_common/line.png) no-repeat center center;
	background-size:33px 33px;
}
.sectionClm .boxClm .boxBtm {
	height: 25px;
	background: url(../img_common/box_btm.png) no-repeat right top;
	background-size:auto 25px;
}
.sectionClm .boxClm .boxBtm:after {
	bottom: -4px;
	right: -4px;
	width: 33px;
	height: 33px;
	background: url(../img_common/line.png) no-repeat center center;
	background-size:33px 33px;
}
.sectionClm .boxClm .boxMain {
	padding:0 15px;
}
.sectionClm .boxClm .boxMain p {
	text-align:left;
}
.sectionClm .boxClm .boxMain p span.block {
	display:inline;
}
.sectionClm .boxClm .boxMain li {
	font-size:11px;
}
.sectionClm .boxClm.on .boxTop {
	height: 25px;
	background: url(../img_common/box_top.png) no-repeat left top;
	background-size:auto 25px;
}
.sectionClm .boxClm.on .boxTop:after {
	top: -4px;
	left: -4px;
	width: 33px;
	height: 33px;
	background: url(../img_common/line.png) no-repeat center center;
	background-size:33px 33px;
}
.sectionClm .boxClm.on .boxBtm {
	height: 25px;
	background: url(../img_common/box_btm.png) no-repeat right top;
	background-size:auto 25px;
}
.sectionClm .boxClm.on .boxBtm:after {
	bottom: -4px;
	right: -4px;
	width: 33px;
	height: 33px;
	background: url(../img_common/line.png) no-repeat center center;
	background-size:33px 33px;
}
.sectionClm .boxClm.on .boxMain {
	padding:0 15px;
}
.sectionClm .boxClm.on .boxMain p {
	text-align:left;
}
.sectionClm .boxClm.on .boxMain p span.block {
	display:inline;
}
.sectionClm .boxClm.on .boxMain li {
	font-size:11px;
}
/*=============================================================
bear
=============================================================*/
.bear_def{
	width:69px;
}
.bear_right{
	width:60px;
}
.bear_left{
	width:60px;
}
.bear_jump{
	width:80px;
}
.icn_bearing{
	width:49px;
}
/*=============================================================
clm0101
=============================================================*/
#clm0101 .figArea {
	padding-bottom:20px;
	position:relative;
	width:100px;
	margin:0 auto;
}
.on #clm0101 .figBox {
	width:100px;
	position:static;
	margin:0 auto;
}
#clm0101 .figBox img {
	width:100%;
	height:auto;
}
.on #clm0101 .bear_left{
  width: 70px;
	top:-10px;
	left:-100px;
	z-index:10;
}
.on #clm0101 .icn_bearing{
	position:absolute;
	top:-40px;
	left:-20px;
	z-index:10;
}
/*=============================================================
clm0102
=============================================================*/
#clm0102 .figArea {
}
#clm0102 .txtBox {
	width:auto;
	float:none;
	padding-top:20px;
}
#clm0102 .figBox {
	width:150px;
	float:none;
	margin:0 auto;
	position:relative;
}
#clm0102 .figBox img {
	margin:0;
	width:100%;
	height:auto;
}
.on #clm0102 .bear_right{
  width: 80px;
	top:-20px;
	right:-80px;
	z-index:10;
}
.on #clm0102 .icn_bearing{
	position:absolute;
	top:auto;
	right:-90px;
	bottom:0;
	z-index:10;
}
/*=============================================================
clm0103
=============================================================*/
#clm0103 .figArea {
}
#clm0103 .txtBox {
	width:auto;
	float:none;
	padding-right:50px;
	padding-bottom:20px;
}
#clm0103 ul {
	width:auto;
	float:none;
}
#clm0103 .figBox {
	width:auto;
	float:none;
}
#clm0103 .figBox img {
	width:100%;
	height:auto;
}
.on #clm0103 .bear_def{
  width: 75px;
	top: 0px;
	right: -5px;
	z-index: 10;
}
.on #clm0103 .icn_bearing{
	position: absolute;
	top: -50px;
	right: 40px;
	z-index: 10;
}
/*=============================================================
clm02
=============================================================*/
#clm02 .txtArea {
	position:relative;
	padding-right:60px;
}
#clm02 .figBox {
	width: 100%;
	margin:0 auto;
	position:relative;
}
#clm02 .figBox li {
	width:50%;
	float:left;
	display:block;
	cursor:pointer;
}
#clm02 .figBox li img {
	width:100%;
	height:auto;
}
.on #clm02 .bear_jump{
  width: 90px;
	top: -30px;
	right: -25px;
	z-index: 10;
}
.on #clm02 .icn_bearing{
	position: absolute;
	top: -50px;
	right:auto;
	left:-40px;
	z-index: 10;
}





#clm02 #winArea{
}

#clm02 .win01{
	position: absolute;
	top:0;
	left:0;
	bottom:0;
	z-index:-1;
	width:100%;
	transition-property: all;
	transition-duration: 1s;
	background-color:rgba(255,255,255,0.8);
}
#clm02 .win02{
	position: absolute;
	top:0;
	left:0;
	bottom:0;
	z-index:-1;
	width:100%;
	transition-property: all;
	transition-duration: 1s;
	background-color:rgba(255,255,255,0.8);
}
#clm02 .win03{
	position: absolute;
	top:0;
	left:0;
	bottom:0;
	z-index:-1;
	width:100%;
	transition-property: all;
	transition-duration: 1s;
	background-color:rgba(255,255,255,0.8);
}
#clm02 .win04{
	position: absolute;
	top:0;
	left:0;
	bottom:0;
	z-index:-1;
	width:100%;
	transition-property: all;
	transition-duration: 1s;
	background-color:rgba(255,255,255,0.8);
}
#clm02 .open01 .win01{
	z-index:15;
	top:0;
	left:0;
	bottom:0;
	width:100%;
}
#clm02 .open02 .win02{
	z-index:15;
	top:0;
	left:0;
	bottom:0;
	width:100%;
}
#clm02 .open03 .win03{
	z-index:15;
	top:0;
	left:0;
	bottom:0;
	width:100%;
}
#clm02 .open04 .win04{
	z-index:15;
	top:0;
	left:0;
	bottom:0;
	width:100%;
}
#clm02 .win01 img,
#clm02 .win02 img,
#clm02 .win03 img,
#clm02 .win04 img{
	width:160px;
	height:auto;
	opacity: 0;
	transition-property: all;
	transition-duration: 1s;
	position:absolute;
	top:50%;
	left:50%;
	margin:-80px 0 0 -80px;
}
#clm02 .open01 .win01 img,
#clm02 .open02 .win02 img,
#clm02 .open03 .win03 img,
#clm02 .open04 .win04 img{
	opacity: 1;
}

/*=============================================================
clm03
=============================================================*/
#clm03 .figArea {
	padding:20px 0 0;
	position:relative;
	width: 200px;
	margin:0 auto;
}
.on #clm03 .figBox {
	width: 200px;
	position:static;
	margin:0 auto;
}
.on #clm03 .bear_left{
  width: 100px;
	bottom: 50px;
	left:auto;
	right:-75px;
	z-index: 10;
}
.on #clm03 .icn_bearing{
	position: absolute;
	top: 10px;
	left: -60px;
	z-index: 10;
}
/*=============================================================
clm04
=============================================================*/
#clm04 .figArea {
	padding:20px 0 0;
	position:relative;
	width:190px;
	margin:0 auto;
}
.on #clm04 .figBox {
	width:190px;
	position:static;
	margin:0 auto;
}
.on #clm04 .figBox img {
	width:100%;
	height:auto;
}
.on #clm04 .bear_right{
	position:absolute;
	top:auto;
	bottom:0;
	right:auto;
	left:-70px;
	z-index:10;
}
.on #clm04 .icn_bearing{
	position:absolute;
	bottom:0;
	right:-40px;
	z-index:10;
}

}
