@charset "utf-8";

/* ------------------------------------------------------------

	valuecreation style

------------------------------------------------------------ */

#main.valuecreation_main {
	overflow: visible;
}

#valuecreation_contents {
	font-size: 83.3333%;
}

.vc_content {
	background: #def2fc;
	position: relative;
	margin-bottom: 41px;
}

.vc_content h2 {
	font-size: 260%;
	font-weight: bold;
	margin-bottom: 20px;
	text-align: center;
}
.vc_content .sub_ttl {
	font-size: 200%;
	font-weight: bold;
	margin-top: 10px;
	margin-bottom: 20px;
	text-align: center;
}

.vc_scroll {
	position: absolute;
	left: 50%;
	bottom: -21px;
	margin-left: -90px;
}

.vc_content a:hover img {
	filter: alpha(opacity=70);
  -moz-opacity: 0.7;
  opacity: 0.7;
}


/* ------------------------------------------------------------
	pagenation
------------------------------------------------------------ */

.pagenation {
  position: fixed;
  right: 50px;
  top: 50%;
  z-index: 997;
  margin-top: -115px;
}

.pagenation a {
	display: block;
	width: 18px;
	font-size: 130%;
	color: #CCCCCC;
	text-align: center;
}

.pagenation a.vc_prev,
.pagenation a.vc_next {
	background-repeat: no-repeat;
	background-position: center top;
	height: 0;
	padding-top: 10px;
	overflow: hidden;
}

.pagenation a.vc_prev:hover,
.pagenation a.vc_next:hover {
	filter: alpha(opacity=70);
  -moz-opacity: 0.7;
  opacity: 0.7;
}

.pagenation a.vc_prev {
	background-image: url(../images/valuecreation/arrow_prev.png);
	margin-bottom: 20px;
}

.pagenation a.vc_next {
	background-image: url(../images/valuecreation/arrow_next.png);
	margin-top: 20px;
}

.pagenation a.vc_num {
	height: 34px;
	line-height: 34px;
}

.pagenation a.vc_num:hover {
	color: #008CD3;
}

.pagenation a.current {
	font-size: 180%;
	color: #008CD3;
}

.pagenation a:hover {
  text-decoration: none;
}


/* ------------------------------------------------------------
	Lazy load
------------------------------------------------------------ */

.anim {
  opacity: 0;
  -webkit-transition: all 1.2s ease;
    -moz-transition: all 1.2s ease;
    -o-transition: all 1.2s ease;
  transition: all 1.2s ease;
  transition-delay: .3s;
}

.anim.load01 {
  opacity: 1;
}

.fade_under {
  -webkit-transform: translateY(80px);
     -moz-transform: translateY(80px);
      -ms-transform: translateY(80px);
       -o-transform: translateY(80px);
          transform: translateY(80px);
}

.fade_under.load01 {
  -webkit-transform: translateY(0);
     -moz-transform: translateY(0);
      -ms-transform: translateY(0);
       -o-transform: translateY(0);
          transform: translateY(0);
}

/* ------------------------------------------------------------
	modal window
------------------------------------------------------------ */

.modal-overlay {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 998;
	width: 100%;
	height: 120%;
	background: rgba(0,0,0,.6);
}

.modal-content {
	position: fixed;
	display: none;
	z-index: 999;
	background: #FFFFFF;
	width: 620px;
	padding: 40px;
}

.modal-close {
	position: absolute;
	top: -20px;
	right: -20px;
}

.modal_tit {
	padding-left: 15px;
	border-left: 5px solid #008CD3;
	font-size: 200%;
	font-weight: bold;
	line-height: 1;
	margin-bottom: 20px;
}

.modal_detail {
	font-size: 130%;
	line-height: 1.85;
}


/* ------------------------------------------------------------
	First view
------------------------------------------------------------ */

.vc_fv {
	position: relative;
	background: url(../images/valuecreation/bg01.jpg) no-repeat center top;
	width: 1040px;
	height: 816px;
	margin: 0 -40px 41px;
	padding-top: 24px;
	text-align: center;
}

.vc_fv h1 {
	margin-bottom: 28px;
}

.vc_fv .txt01 {
	margin-bottom: 8px;
	font-size: 280%;
	font-weight: bold;
	line-height: 1;
}

.vc_fv .txt03 {
	margin-top: 5px;
	font-size: 150%;
	line-height: 1.66;
}

.vc_fv .bearing {
	height: 402px;
	margin-top: 25px;
	line-height: 0;
	background: url(../images/valuecreation/bearing_inside.png) no-repeat center center;
	position: relative;
}

.vc_fv .bearing img.bearing_outside {
	-webkit-animation: spin 20s linear infinite;
	-moz-animation: spin 20s linear infinite;
	-ms-animation: spin 20s linear infinite;
	-o-animation: spin 20s linear infinite;
	animation: spin 20s linear infinite;
	position: relative;
	z-index: 10;
}

.vc_fv .bearing img.bearing_middle {
	position: absolute;
	top: 0;
	left: 50%;
	margin-left: -201px;
	-webkit-animation: spin_middle 50s linear infinite;
	-moz-animation: spin_middle 50s linear infinite;
	-ms-animation: spin_middle 50s linear infinite;
	-o-animation: spin_middle 50s linear infinite;
	animation: spin_middle 50s linear infinite;
}

@-webkit-keyframes spin {
	0% {-webkit-transform: rotate(0deg);}
	100% {-webkit-transform: rotate(360deg);}
}
@-moz-keyframes spin {
	0% {-moz-transform: rotate(0deg);}
	100% {-moz-transform: rotate(360deg);}
}
@-ms-keyframes spin {
	0% {-ms-transform: rotate(0deg);}
	100% {-ms-transform: rotate(360deg);}
}
@-o-keyframes spin {
	0% {-o-transform: rotate(0deg);}
	100% {-o-transform: rotate(360deg);}
}
@keyframes spin {
	0% {transform: rotate(0deg);}
	100% {transform: rotate(360deg);}
}

@-webkit-keyframes spin_middle {
	0% {-webkit-transform: rotate(0deg);}
	100% {-webkit-transform: rotate(360deg);}
}
@-moz-keyframes spin_middle {
	0% {-moz-transform: rotate(0deg);}
	100% {-moz-transform: rotate(360deg);}
}
@-ms-keyframes spin_middle {
	0% {-ms-transform: rotate(0deg);}
	100% {-ms-transform: rotate(360deg);}
}
@-o-keyframes spin_middle {
	0% {-o-transform: rotate(0deg);}
	100% {-o-transform: rotate(360deg);}
}
@keyframes spin_middle {
	0% {transform: rotate(0deg);}
	100% {transform: rotate(360deg);}
}


/* ------------------------------------------------------------
	section 01
------------------------------------------------------------ */

.vc_sec01 {
	padding: 35px 0 90px;
}

.vc_sec01 ul {
	width: 700px;
	margin: 0 auto 53px;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
	display: flex;
    flex-wrap: wrap;
    -webkit-align-items: flex-end;
    -moz-align-items: flex-end;
    -ms-align-items: flex-end;
    -o-align-items: flex-end;
    align-items: flex-end;
    justify-content: center;
}

.vc_sec01 ul li {
	width: calc((100%-36px)/4);
}

.vc_sec01 .txt01 {
	position: relative;
}

.vc_sec01 .txt01 .arrow {
	position: absolute;
	top: -50px;
	left: 50%;
	margin-left: -60px;
}

.vc_sec01 .txt01 p a {
	display: block;
	background: #D0E9FA;
	border: 1px solid #C6DBF6;
	width: 472px;
	height: 78px;
	margin: 0 auto;
	line-height: 78px;
	text-align: center;
	font-size: 200%;
	font-weight: bold;
	color: #008CD3;
}


/* ------------------------------------------------------------
	section 02
------------------------------------------------------------ */

.vc_sec02 {
	padding: 45px 0 70px;
}

.vc_sec02 ul {
	width: 714px;
	margin: 0 auto;
	padding-left: 3px;
}

.vc_sec02 ul.input {
	margin-bottom: 25px;
}

.vc_sec02 ul li {
	float: left;
	margin: -6px 0 0 -3px;
}


/* ------------------------------------------------------------
	section 03
------------------------------------------------------------ */

.vc_sec03 {
	background-image: url(../images/valuecreation/bg02.png);
	background-repeat: no-repeat;
	background-position: center 20px;
	padding: 45px 0 70px;
}

.vc_sec03 .chain {
	position: relative;
}

.vc_sec03 .chain .imgmap {
	position: relative;
	z-index: 2;
}

.vc_sec03 .chain .txt {
	position: absolute;
	top: 98px;
	left: 50%;
	width: 180px;
	margin-left: -90px;
	text-align: center;
	z-index: 3;
}

.vc_sec03 .chain .txt h3 {
	font-size: 200%;
	font-weight: bold;
	color: #008CD3;
	margin-bottom: 3px;
}

.vc_sec03 .chain .txt p {
	font-size: 140%;
	line-height: 1.7;
}

.vc_sec03 .chain .fig {
	position: absolute;
	top: 203px;
	left: 50%;
	width: 180px;
	margin-left: -90px;
	text-align: center;
	z-index: 3;
}

.vc_sec03 .chain .imgmap {
	width: 438px;
	margin: 0 auto;
}

.vc_sec03 .chain .imgs {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1;
}

.vc_sec03 .chain .imgs div {
	position: absolute;
	display: none;
}

#vc_mapimg01 {
	top: 0;
	left: 40px;
}

#vc_mapimg02 {
	top: 0;
	right: 40px;
}

#vc_mapimg03 {
	top: 270px;
	right: 40px;
}

#vc_mapimg04 {
	top: 270px;
	left: 40px;
}

.vc_sec03 ul {
	width: 714px;
	margin: 20px auto 0;
}

.vc_sec03 ul li {
	float: left;
}


/* ------------------------------------------------------------
	section 04
------------------------------------------------------------ */

.vc_sec04 {
	padding: 45px 0 70px;
}

.vc_sec04 ul {
	width: 720px;
	margin: 0 auto 25px;
}

.vc_sec04 ul li {
	float: left;
}

.vc_sec04 .single_btn {
	text-align: center;
}
.vc_sec04 .fade_under.load01{
	width: 85%;
    margin: 0 auto;
}

.vc_sec04 *>sup {
	line-height: 6px;
	font-size: 14px;
}




/* ------------------------------------------------------------
	section 05
------------------------------------------------------------ */

.vc_content.vc_sec05 {
	margin-bottom: 21px;
}

.vc_sec05 {
	padding: 40px 0 40px;
	text-align: center;
}

.vc_sec05 .fig_value {
	margin-bottom: -60px;
}


/* ------------------------------------------------------------
	section 06
------------------------------------------------------------ */

.vc_sec06 {
	background: url(../images/valuecreation/bg04.jpg) no-repeat center top;
	width: 1040px;
	height: 452px;
	margin: 0 -40px -91px;
	padding-top: 80px;
	text-align: center;
}

.vc_sec06 h2 {
	margin-bottom: 22px;
}

.vc_sec06 p {
	font-size: 150%;
	line-height: 1.8;
	margin-bottom: 35px;
}

.vc_sec06 .logo {
	margin-bottom: 30px;
}

div.modal-open, area.modal-open {
	cursor: pointer;
}