@charset "UTF-8";

/* Teaser css
   ========================================================================== */
/* Kyocera Common */

.st-GlobalHeader,
.layout-Top_ContentsHeader {
	background-color: #FFF;
}
.st-GlobalFooter_PageTop {
	z-index: 5;
}
.robotics-lp_wrap {
	position: relative;
	overflow: hidden;
}

/**************** LP Common ****************/
.ttlLv2 {
	text-align: center;
	font-size: 36px;
	letter-spacing: .05em;
	font-weight: 500;
	margin-bottom: 50px;
	overflow: hidden;
}
.ttlLv2 span.fss {
	display: block;
	font-size: 14px;
	color: #068296;
	font-weight: bold;
	margin-top: 10px;
}
.ttlLv2-collabo > span,
.ttlLv2-cps > span,
.ttlLv2-feature > span,
.ttlLv2-case > span,
.ttlLv2-news > span {
	display: block;
	position: relative;
	transform: translateY(100%);
}
.txtRead {
	font-size: 21px;
	text-align: center;
	line-height: 2;
	font-weight: 500;
}


/**************** FV ****************/
.block-fv_Area {
	
}
.block-fv_Area_inner {
	height: 80vh;
	position: relative;
	overflow: hidden;
}
.fv_mov {
	position: absolute;
	right: 0;
	bottom: 0;
	min-width: 100%;
	min-height: 100%;
	width: auto;
	height: auto;
	z-index: 0;
}
.block-fv_cont {
	width: 100%;
	height: 100%;
	position: relative;
	z-index: 10;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0 30px 100px;
}
.block-fv_cont_inner {
    max-width: 1200px;
    width: 100%;
    top: -20px;
    position: relative;
}
.block-fv_cont_inner h1 {
	font-size: 42px;
	letter-spacing: .1em;
	font-weight: bold;
	margin-bottom: 20px;
	line-height: 1.3;
}
.block-fv_cont_inner h1 span {
	display: block;
}
.block-fv_cont_inner p {
	font-size: 18px;
	letter-spacing: .1em;
	margin-bottom: 40px;
	opacity: 0;
	transform: translateX(50px);
	transition: .3s;
}

.block-fv_cont_inner p.alt {
    font-size: 18px;
    letter-spacing: .1em;
    margin-bottom: 30px;
    opacity: 1;
    transform: unset;
    transition: .3s;
}

.block-fv_cont_inner p.js-show {
	opacity: 1;
	transform: translateX(0px);
}
.block-fv_cont_inner .block-fv_btn {
	transform: translateX(50px);
	transition-duration: .3s;
	transition-delay: .5s;
	opacity: 0;
}
.block-fv_cont_inner .block-fv_btn.alt {
    transform: unset;
    opacity: 1;
}
.block-fv_cont_inner .block-fv_btn.js-show {
	transform: translateX(0px);
	opacity: 1;
}

.block-fv_cont_inner .block-fv_btn a {
	display: inline-block;
	padding: 10px 30px;
	color:  #FFF;
	font-size: 16px;
	text-decoration: none;
	border-radius: 5px;
	transition: all 0.5s;
	position: relative;
	font-weight: bold;
}
.block-fv_cont_inner .block-fv_btn a:hover {
	color:  #068296;
}
.block-fv_cont_inner .block-fv_btn a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-color: rgba(6, 130, 150 ,1);
    transition: all 0.3s;
}
.block-fv_cont_inner .block-fv_btn a:hover::before {
    opacity: 0 ;
    transform: scale(0.5,0.5);
}
.block-fv_cont_inner .block-fv_btn a::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0;
    transition: all 0.3s;
    border: 2px solid rgba(6, 130, 150 ,0.8);
	background-color: rgba(255,255,255,.5);
    transform: scale(1.2,1.2);
}
.block-fv_cont_inner .block-fv_btn a:hover::after {
    opacity: 1;
    transform: scale(1,1);
}

.block-fv_Area_inner a.scrollbtn {
	position: absolute;
	left: 50%;
	bottom: 80px;
	transform: translateX(-50%);
	padding-top: 60px;
	z-index: 10;
	color: #999;
	text-decoration: none;
	transition-duration: .8s;
	transition-delay: .8s;
	/*opacity: 0;*//*20220303*/
	opacity: 100;
}
.block-fv_Area_inner a.scrollbtn.js-show {
	opacity: 1;
}
.block-fv_Area_inner a.scrollbtn span {
  position: absolute;
  top: 0;
  left: 50%;
  width: 30px;
  height: 50px;
  margin-left: -15px;
  border: 2px solid #777;
  border-radius: 50px;
  box-sizing: border-box;
}
.block-fv_Area_inner a.scrollbtn span::before {
  position: absolute;
  top: 10px;
  left: 50%;
  content: '';
  width: 6px;
  height: 6px;
  margin-left: -3px;
  background-color: #777;
  border-radius: 100%;
  -webkit-animation-name: sdb;
  -webkit-animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
  animation-name: sdb;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  box-sizing: border-box;
}
@-webkit-keyframes sdb {
  0% {
    -webkit-transform: translate(0, 0);
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  80% {
    -webkit-transform: translate(0, 20px);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes sdb {
  0% {
    transform: translate(0, 0);
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  80% {
    transform: translate(0, 20px);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

/* Gradiation Cover */
@keyframes gradientanimation {
    0% {
        background-position:0vw center;
    }

    50% {
        background-position:100vw center;
    }

    100% {
        background-position:200vw center;
    }  
}
/* Gradiation Cover Sp */
@keyframes gradientanimationSp {
    0% {
        background-position:0vw center;
    }

    50% {
        background-position:200vw center;
    }

    100% {
        background-position:400vw center;
    }  
}

.block-fv_gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    background-color: rgb(255,255,255);    
    background: linear-gradient(45deg, #D4C2FC 0%, #EEE4E5 10%, #F4D3F0 20%, #C8E0F8 30%, #A9F7FE 40%, #D4C2FC 50%, #EEE4E5 60%, #F4D3F0 70%, #C8E0F8 80%, #A9F7FE 90%, #D4C2FC 100%);    
    mix-blend-mode: screen;
    animation-name: gradientanimation;
    animation-duration: 10s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    background-position:0vw center;
    background-size: 200vw 200vw;
}

@media screen and (-ms-high-contrast: none) {
	*::-ms-backdrop, .block-fv_gradient {
		opacity: 0.9;
	}
}
.block-fv_cover {
	position: absolute;
	left: 50%;
	bottom: -11px;
	width: 1936px;
	z-index: 3;
	transform: translateX(-50%);
}
.block-fv_cover svg {
	width: 100%;
	height: auto;
}

/**************** Modal Setting ****************/
.fv_popup_wrap {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(255,255,255,.9);
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 1000;
	visibility: hidden;
	transition: .5s;
	opacity: 0;
}
.fv_popup_wrap.js-show {
	visibility: visible;
	opacity: 1;
}
.fv_popup {
	max-width: 1000px;
	width: 90%;
	display: flex;
	align-items: center;
	position: relative;
	flex-direction: row-reverse;
	background-color: #FFF;
}
.fv_popup__txt {
	width: 52%;
	padding: 40px 60px;
}
.ttlLv2-popup {
	text-align: left;
}
.popupTxt {
	line-height: 2;
}
.fv_popup__img {
	width: 48%;
	text-align: right;
}

.popup_closebtn {
	position: absolute;
	background-color: #068296;
	width: 30px;
	height: 30px;
	top: -15px;
	right: -15px;
	overflow: hidden;
	text-indent: 100%;
	white-space: nowrap;
}
.popup_closebtn::before,
.popup_closebtn::after {
	content: "";
	position: absolute;
	width: 26px;
	height: 1px;
	background-color: #FFF;
	top: 50%;
	left: 50%;
	transition: .3s;
}
.popup_closebtn::before {
	transform: translate(-50%, -50%) rotate(-45deg);
}
.popup_closebtn::after {
	transform: translate(-50%, -50%) rotate(45deg);
}
.popup_closebtn:hover::before {
	transform: translate(-50%, -50%) rotate(45deg)
}
.popup_closebtn:hover::after {
	transform: translate(-50%, -50%) rotate(135deg)
}


/**************** AI Collabo Setting ****************/
.block-collabo_Area {
	position: relative;
	padding: 50px 30px 250px;
	z-index: 2;
	margin-top: 0px;
	margin-bottom: -150px;
	overflow: hidden;
}

.block-collabo_Area.alt {
	position: relative;
	padding: 0px 30px 250px;
	z-index: 2;
	margin-top: 0px;
	margin-bottom: -150px;
	overflow: hidden;
}
.block-collabo_cover {
	position: absolute;
	left: 50%;
	width: 1936px;
	z-index: -1;
	transform: translateX(-50%);
}
/*.block-collabo_cover.top {
	top: 0;
}*/
.block-collabo_cover.bottom {
	bottom: 0;
}

.block-collabo_inner {
	max-width: 1200px;
	margin: 0 auto;
}


.block-collabo_illstbox {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	max-width: 1160px;
	margin: 50px auto 100px;
	font-weight: 500;
}

.block-collabo_illst_item.before {
	width: 44.3%;
}
.block-collabo_illst_item.after {
	width: 50.7%;
}
.block-collabo_illst_item figure {
	position: relative;
	overflow: hidden;
	border: #DDD solid 1px;
	background-color: #DDD;
}
.block-collabo_illst_item:nth-of-type(2) figure {
	border: #55BCC9 solid 1px;
	/*background-color: #068296;*/
	background-color: #55BCC9;
}
.block-collabo_illst_item figure img {
	position: relative;
	/*transform: transcale(1.2);*/
}
.block-collabo_illst_item figure .figTtl {
	position: absolute;
	top: 20px;
	left: 50%;
	transform: translate(-50%);
	font-size: 22px;
	font-weight: 500;
	color: #FFF;
}
.block-collabo_illst_item figure .figdesc {
	position: absolute;
	bottom: 20px;
	left: 50%;
	transform: translate(-50%);
	color: #666;
}
.block-collabo_illst_item:nth-of-type(2) figure .figdesc {
	color: #FFF;
}
.block-collabo_illst_item .captttl {
	font-size: 21px;
	text-align: center;
	margin-top: 20px;
}
.block-collabo_illst_item .captdesc {
	font-size: 16px;
	text-align: center;
	margin-top: 10px;
}
.block-collabo_illst_item .captdesc span {
	display: inline-block;
	background: linear-gradient(transparent 80%, #55BCC9 50%);
}

/* Back Illst */
.block-collabo_bgilllst {
	position: absolute;
	z-index: -1;
}
.block-collabo_bgilllst.left {
	width: 34%;
	top: -10%;
	left: -5%;
}
.block-collabo_bgilllst.right {
	width: 25%;
	top: -18%;
	right: 1%;
}
.block-collabo_bgilllst svg {
	max-width: 100%;
}

/**************** Cyber Physical System Setting ****************/
.block-cps_Area {
	background-color: #068296;
	padding: 250px 30px 100px;
}
.block-cps_inner {
	max-width: 960px;
	margin: 0 auto;
	color: #FFF;
}
.ttlLv2-cps {
	margin-bottom: 80px;
}
.block-cps_inner figure {
	margin-bottom: 60px;
	border-radius: 10px;
	overflow: hidden;
}
.cps-txtbox {
	max-width: 780px;
	margin: 0 auto;
	font-weight: 500;
	line-height: 2.5;
}
.robotics-txt {
	font-size: 18px;
}
.robotics-txt:nth-of-type(n+2) {
	margin-top: 1.5em;
}

/**************** Feature Setting ****************/
.block-feature_Area {
	padding: 100px 30px;
	position: relative;
	overflow: hidden;
}
.block-feature_inner {
	max-width: 760px;
	margin: 0 auto;
}

.block-feature_inner.alt {
    max-width: 860px;
    margin: 0 auto;
}

.txtRead--tal {
	text-align: left;
	display: inline-block;
}
.txtRead--tal.alt{
	margin-top: 30px;
}
.txtRead--tal:nth-of-type(n+2) {
	margin-top: 1.5em;
}
.feature_contens {
	border: #CCC solid 1px;
	padding: 30px;
	text-align: left;
	margin: 40px auto 0;
	display: inline-block;
}
.feature_contens dt {
	text-align: center;
	margin-bottom: 10px;
	font-size: 18px;
	font-weight: bold;
}
.feature_contens dd {
	margin-left: 0;
	line-height: 2;
}

.feature_movie_box {
	display: flex;
	align-items: center;
	/*justify-content: center;*/
	position: relative;
}
.feature_movie_box:nth-of-type(n+2) {
	margin-top: 100px;
}

.feature_movie_box.alt:nth-of-type(n+2) {
    margin-top: 120px;
}
.feature_movie_box--reverse {
	flex-direction: row-reverse;
}
.hlLv03--feature {
	font-size: 24px;
	margin-bottom: 10px;
}
.hlLv03--feature span {
	display: block;
	font-size: 21px;
	color: #068296;
	margin-bottom: 5px;
}
.feature_movie_box figure {
	width: 56.5%;
	position: relative;
	z-index: 10;
	opacity: 0;
	transform: translateX(-100px);
	transition: .3s;
}

.feature_movie_box figure.alt {
    width: 44.5%;
    position: relative;
    z-index: 10;
    opacity: 0;
    transform: translateX(-100px);
    transition: .3s;
}

.feature_movie_box figure a {
	display: block;
    position: relative;
}
.feature_movie_box figure a::before {
    display: inline-block;
    content: '';
    opacity: 1;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    color: #fff;
    width: 64px;
    height: 64px;
    text-align: center;
    line-height: 40px;
    z-index: 1;
    /*background: url(../img/icn_play.png) no-repeat center center / contain;*/
}

.feature_movie_box--reverse figure {
	transform: translateX(100px);
}
.feature_movie_box figure.is-show {
	opacity: 1;
	transform: translateX(0);
}
.feature_movie_txt {
	position: absolute;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	background-color: #F2F7F3;
	width: 50%;
	height: 300px;
	padding: 0 50px 0 60px;
}
.feature_movie_box:nth-of-type(2n+1) .feature_movie_txt {
	top: -30px;
	right: 0;
	padding-left: 100px;
}
.feature_movie_box:nth-of-type(2n) .feature_movie_txt {
	top: -30px;
	left: 0;
	padding-right: 90px;
}

.block-feature_bgilllst {
	position: absolute;
	top: 0;
	left: 40%;
	width: 40%;
	z-index: -1;
}

.feature_btm_btn {
    margin-top: 100px;
    text-align: center;
}
.feature_btm_btn a {
	/*border: #E10012 solid 1px;*/
	display: inline-block;
	/*padding: 13px 0;*/
	padding: 25px 0;
	text-align: center;
	font-size: 18px;
	font-weight: 700;
	color: #E10012;
	text-decoration: none;
	max-width: 360px;
	width: 100%;
	position: relative;
	border: 0 solid;
	box-shadow: inset 0 0 20px rgba(225, 0, 18, 0);
	outline: 1px solid;
	outline-color: rgba(225, 0, 18, 0.5);
	outline-offset: 0px;
	text-shadow: none;
	-webkit-transition: all 1250ms cubic-bezier(0.19, 1, 0.22, 1);
	transition: all 1250ms cubic-bezier(0.19, 1, 0.22, 1);
}
.feature_btm_btn a:hover {
	/*border: 1px solid;*/
	box-shadow: inset 0 0 20px rgba(225, 0, 18, 0.5), 0 0 20px rgba(225, 0, 18, 0.2);
	outline-color: rgba(225, 0, 18, 0);
	outline-offset: 15px;
}


/**************** Case Setting ****************/
.block-case_Area {
	background-color: #F2F7F3;
	padding: 100px 30px;
}
.block-case_inner {
	max-width: 1160px;
	margin: 0 auto;
}
.readTxtBox {
	max-width: 760px;
	margin: 0 auto 100px;
	text-align: center;
}

.readTxtBox.alt {
	max-width: 860px;
}

.case_illust_box {
	display: flex;
	justify-content: space-between;
	margin-top: 100px;
	padding-left: 0;
}
.case_illust_box li {
	list-style: none;
}
.case_illust_item {
	width: 30%;
	text-align: center;
	transform: translateY(100px);
	opacity: 0;
	transition: .3s;
}
.case_illust_item:nth-of-type(2) {
	transition-delay: .3s;
}
.case_illust_item:nth-of-type(3) {
	transition-delay: .6s;
}
.case_illust_item.is-show {
	transform: translateY(0);
	opacity: 1;
}
.case_illust_item:nth-of-type(n+2) {
	margin-left: 5%;
}
.case_illust_item figcaption {
	font-size: 21px;
	margin-top: 20px;
}
.case_illust_item figcaption span {
	font-size: 14px;
	font-weight: bold;
	color: #068296;
	display: block;
}

/**************** News Setting ****************/
.block-news_Area {
	padding: 100px 30px;
}
.block-news_inner {
	max-width: 1160px;
	margin: 0 auto;
}
.newsList {
	border-top: #E0E0E0 solid 1px;
	border-bottom: #E0E0E0 solid 1px;
	padding: 70px 50px;
	font-size: 18px;
}
.newsList dt {
	width: 6em;
	float: left;
}
.newsList dd {
	padding-left: 6em;
	margin-bottom: 10px;
	margin-left: 0;
}
.newsList dd:last-of-type {
	margin-bottom: 0px;
}
.newsList a {
	color: #039;
    text-decoration: none;
}
.newsList a:hover {
	color: #df0523;
    text-decoration: underline;
}
.newsList a span.st-Icon-Internal {
    color: #333;
}

/**************** End Area ****************/
.block-lpfoot_Area {
	/*background: url(../img/roboarm_line.png) no-repeat 68% top / contain;*/
}
.block-lpfoot_inner {
	height: 100%;
}

/* Top */
.lpfoot_top {
	padding: 130px 15px 50px;
}
.lpfoot_inner {
	max-width: 840px;
	margin: 0 auto;
}

.lpfoot_ttllv2 {
	min-width: 160px;
	max-width: 240px;
	width: 30%;
	margin: 0 auto 50px;
}
.lpfoot_opendate {
	width: 96%;
	margin: 0 auto 50px;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

.lpfoot_ttllv3 {
	font-size: 22px;
	text-align: center;
	margin-bottom: 30px;
}
.lpfoot_txt {
	text-align: center;
}

.btnbox {
	margin-top: 60px;
	padding-left: 0;
	list-style: none;
	display: flex;
	justify-content: center;
}
.btnbox li {
	list-style: none;
	width: 40%;
	margin: 0 2%;
}
.btnbox a {
	/*border: #E10012 solid 1px;*/
	display: inline-block;
	/*padding: 13px 0;*/
	padding: 25px 0;
	text-align: center;
	font-size: 18px;
	font-weight: 700;
	color: #E10012;
	text-decoration: none;
	max-width: 360px;
	width: 100%;
	position: relative;
	border: 0 solid;
	box-shadow: inset 0 0 20px rgba(225, 0, 18, 0);
	outline: 1px solid;
	outline-color: rgba(225, 0, 18, 0.5);
	outline-offset: 0px;
	text-shadow: none;
	-webkit-transition: all 1250ms cubic-bezier(0.19, 1, 0.22, 1);
	transition: all 1250ms cubic-bezier(0.19, 1, 0.22, 1);
}
.btnbox a:hover {
	/*border: 1px solid;*/
	box-shadow: inset 0 0 20px rgba(225, 0, 18, 0.5), 0 0 20px rgba(225, 0, 18, 0.2);
	outline-color: rgba(225, 0, 18, 0);
	outline-offset: 15px;
}
.btnbox a span.fss {
	display: block;
	text-align: center;
	font-size: 12px;
	font-weight: 500;
}


.lpfoot_contact {
	font-size: 14px;
	text-align: center;
	margin-top: 70px;
}
.lpfoot_contact dl {
	display: inline-block;
}
.lpfoot_contact dt {
	display: inline-block;
	/*border: #333 solid 1px;
	border-radius: 5px;
	padding: 2px 10px;*/
	padding-right: 10px;
	border-right: #CCC solid 1px;
	vertical-align: middle;
}
.lpfoot_contact dd {
	display: inline-block;
	vertical-align: middle;
	margin-left: 7px;
}
.lpfoot_contact dd a {
	color: #333;
}

.lpfoot_contact p {
	display: inline-block;
	margin-left: 20px;
}

.btnBtmTxt {
	text-align: center;
	margin-top: 20px;
	font-size: 14px;
}

/* bottom */
.lpfoot_bottom {
}
.lpfoot_bottom > a {
	background-color: #E10012;
	padding: 15px;
	text-decoration: none;
	color: #FFF;
	display: block;
}
.lpfoot_bottom .lpfoot_inner {
	/*display: flex;
	justify-content: space-between;
	align-items: center;*/
	text-align: center;
}
.lpfoot_bottom_ttl {
	font-size: 16px;
	font-weight: bold;
}
.lpfoot_bottom_desc {
	font-size: 13px;
}
.lpfoot_bottom_c {
	margin: 0 15px 0 30px;
}
.lpfoot_bottom_c dt {
	font-size: 14px;
	white-space: nowrap;
}
.lpfoot_bottom_c dd {
	font-size: 12px;
	margin-left: 0;
	white-space: nowrap;
}
.lpfoot_bottom_r {
	width: 178px;
}
.lpfoot_bottom_r a {
	position: relative;
	display: block;
}
.lpfoot_bottom_r a::after {
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
	transition: .3s;
	display: block;
	background-color: #000;
}
.lpfoot_bottom_r a:hover::after {
	opacity: .5;
}


/**************** Fix Contact Botton ****************/
a.fixContactBtn {
	position: fixed;
	top: 50%;
	right: -127px;
	transform: translateY(-50%);
	display: block;
	background-color: #D90000;
	width: 175px;
	text-align: center;
	padding: 10px 0;
	font-size: 16px;
	z-index: 200;
	color: #FFF;
	text-decoration: none;
	transition: .3s;
}
a.fixContactBtn.is-hide {
	right: -175px;
}
a.fixContactBtn::before {
	content: "";
	/*background: url(../img/icn_mail.svg) no-repeat center center / contain;*/
	width: 30px;
	height: 23px;
	display: inline-block;
	margin-right: 10px;
	vertical-align: middle;
}
a.fixContactBtn::after {
	content: "";
	width: 10px;
	height: 10px;
	display: inline-block;
	vertical-align: middle;
	border-right: #FFF solid 2px;
	border-bottom: #FFF solid 2px;
	transform: translateY(-5px) rotate(45deg);
	margin-left: 10px;
}


/**************** Loading ****************/
.loading_bg {
	position: fixed;
	width: 100%;
	height: 100vh;
	top: 0;
	left: 0;
	background-color: #FFF;
	z-index: 500;
}
.loading_wrap {
  max-width: 1000px;
  margin: auto;
  display: flex;
  padding: 0 20px;
  justify-content: space-around;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.loading_block {
  width: 200px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loading {
  width: 45px;
  display: flex;
  flex-wrap: wrap;
}

.circle {
  width: 15px;
  height: 15px;
  background-color: #CCC;
  margin: auto;
  animation-name: loading;
  animation-duration: 1.5s;
  animation-iteration-count: infinite;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}
.circle:nth-child(1) {
  animation-delay: 0.2s;
}
.circle:nth-child(2) {
  animation-delay: 0.3s;
}
.circle:nth-child(3) {
  animation-delay: 0.4s;
}
.circle:nth-child(4) {
  animation-delay: 0.1s;
}
.circle:nth-child(5) {
  animation-delay: 0.2s;
}
.circle:nth-child(6) {
  animation-delay: 0.3s;
}
.circle:nth-child(7) {
  animation-delay: 0s;
}
.circle:nth-child(8) {
  animation-delay: 0.1s;
}
.circle:nth-child(9) {
  animation-delay: 0.2s;
}

@keyframes loading {
  20% {
    transform: scale(0.1);
  }
  40% {
    transform: scale(1);
  }
}



@media only screen and (max-width:1023px) {
	/**************** LP Common ****************/
	.ttlLv2 {
	text-align: center;
		font-size: 24px;
	}
	.txtRead {
		font-size: 18px;
	}
	
	/**************** FV ****************/
	.block-fv_Area_inner {
		height: 750px;
	}
	.block-fv_cont_inner h1 {
		font-size: 36px;
	}
	
	/**************** Modal Setting ****************/
	.fv_popup_wrap {
		/*visibility: visible;*/
	}
	.fv_popup {
		display: block;
	}
	.fv_popup__txt {
		width: 100%;
		padding: 30px;
	}
	.ttlLv2-popup {
		text-align: center;
		margin-bottom: 20px;
	}
	.popupTxt {
		line-height: 2;
	}
	.fv_popup__img {
		width: 100%;
		text-align: center;
		padding: 30px 30px 0;
	}
	
	/**************** AI Collabo Setting ****************/
	.block-collabo_illst_item .captttl {
		font-size: 20px;
	}
	.block-collabo_illst_item .captdesc {
		font-size: 14px;
	}

	/**************** Cyber Physical System Setting ****************/
	.block-cps_Area {
		padding-top: 190px;
	}
	
}
@media only screen and (min-width:768px) {
	.spOnly {
		display: none;
	}
	a.fixContactBtn:hover {
		right: 0;
	}
}
@media only screen and (max-width:767px) {
	.pcOnly {
		display: none;
	}
	/**************** LP Common ****************/
	.ttlLv2 {
		font-size: 22px;
		margin-bottom: 40px;
	}
	.ttlLv2 span {
		margin-top: 0px;
	}
	.txtRead {
		font-size: 16px;
		text-align: left;
	}
	
	#sub .feature_btm_btn a {
		font-size: 16px;
	}

	
	/**************** FV ****************/
	.block-fv_Area_inner {
		height: 700px;
	}
	.fv_mov {
		/*right: -80%;*/
		height: 500px;
	}
	.block-fv_cont {
		padding-left: 6%;
		padding-right: 6%;
		padding-bottom: 100px;
	}

	a.ire img {
		max-width: 300px;
		width: 100%;
	}

	.block-fv_cont_inner h1 {
		font-size: 24px;
	}
	.block-fv_cont_inner p {
		font-size: 16px;
		margin-bottom: 20px;
	}
	.block-fv_cont_inner .block-fv_btn {
		text-align: center;
	}
	.block-fv_Area_inner a.scrollbtn {
		bottom: 60px;
	}
	
	.block-fv_gradient {
		animation-name: gradientanimationSp;
		background-size: 400vw 400vw;
	}
	/**************** Modal Setting ****************/
	.fv_popup_wrap {
		/*visibility: visible;*/
	}
	.fv_popup__txt {
		padding: 6%;
	}
	.ttlLv2-popup {
		text-align: center;
		margin-bottom: 20px;
	}
	.ttlLv2-popup span.fss {
		margin-top: 0;
	}

	.popupTxt {
		line-height: 1.5;
		font-size: 14px;
	}
	.fv_popup__img {
		padding: 6% 6% 0;
	}
	.fv_popup__img img {
		width: 70%;
	}
	
	/**************** AI Collabo Setting ****************/
	.block-collabo_Area {
		padding: 0px 6% 180px;
	}

	.block-collabo_illstbox {
		display: block;
		margin: 50px auto;
	}

	.block-collabo_illst_item.before {
		width: 100%;
	}
	.block-collabo_illst_item.after {
		width: 100%;
		margin-top: 40px;
	}
	.block-collabo_illst_item .captttl {
		font-size: 18px;
	}
	.block-collabo_illst_item .captdesc {
		text-align: left;
	}
	.block-collabo_illst_item .captdesc span {
		display: inline;
	}

	/* Back Illst */
	.block-collabo_bgilllst {
		position: absolute;
	}
	.block-collabo_bgilllst.left {
		width: 90%;
		top: -15%;
		left: -5%;
	}
	.block-collabo_bgilllst.right {
		width: 80%;
		top: 10%;
		right: -5%;
	}
	
	/**************** Cyber Physical System Setting ****************/
	.block-cps_Area {
		background-color: #068296;
		padding: 100px 6% 50px;
	}
	.ttlLv2-cps {
		margin-bottom: 50px;
	}
	.block-cps_inner figure {
		margin-bottom: 40px;
	}
	.cps-txtbox {
		line-height: 1.8;
	}
	.robotics-txt:nth-of-type(n+2) {
		margin-top: 1.5em;
	}
	
	/**************** Feature Setting ****************/
	.block-feature_Area {
		padding: 50px 6%;
		position: relative;
		overflow: hidden;
	}

	.feature_movie_box {
		display: block;
		align-items: center;
	}
	.feature_movie_box:nth-of-type(n+2) {
		margin-top: 50px !important;
	}
	.hlLv03--feature {
		font-size: 20px;
	}
	.hlLv03--feature span {
		font-size: 16px;
	}
	.feature_movie_box figure {
		width: 100% !important;
		text-align: center;
		transform: translate(0, 100px);
	}
    .feature_movie_box figure a::before {
        width: 32px;
        height: 32px;
    }
	.feature_movie_box--reverse figure {
		transform: translate(0, 100px);
	}
	.feature_movie_txt {
		position: static !important;
		display: block !important;
		width: 100% !important;
		height: auto !important;
		padding: 20px !important;
	}
	.feature_movie_box:nth-of-type(2n+1) .feature_movie_txt {
		padding-left: 20px;
	}
	.block-feature_bgilllst {
		top: -20%;
		left: 0;
		width: 100%;
	}
	.block-feature_bgilllst svg {
		width: 150%;
	}
    .feature_btm_btn {
        margin-top: 40px;
        text-align: center;
    }


	/**************** Case Setting ****************/
	.block-case_Area {
		padding: 50px 6%;
	}
	.readTxtBox {
		margin: 0 auto 50px;
	}
	.case_illust_box {
		display: block;
		margin-top: 50px;
	}
	.case_illust_item {
		width: 100%;
	}
	.case_illust_item:nth-of-type(n+2) {
		margin-left: 0%;
		margin-top: 6%;
	}
	.case_illust_item figcaption {
		font-size: 18px;
		margin-top: 15px;
	}
	.case_illust_item figcaption span {
		font-size: 12px;
	}
	
	.case_illust_item:nth-of-type(2) {
		transition-delay: 0;
	}
	.case_illust_item:nth-of-type(3) {
		transition-delay: 0;
	}

	/**************** News Setting ****************/
	.block-news_Area {
		padding: 50px 6%;
	}
	.newsList {
		border-top: #E0E0E0 solid 1px;
		border-bottom: #E0E0E0 solid 1px;
		padding: 30px 0;
		font-size: 16px;
	}
	.newsList dt {
		width: 100%;
		float: none;
	}
	.newsList dd {
		padding-left: 0;
		margin-bottom: 10px;
	}
	.newsList dd:last-of-type {
		margin-bottom: 0px;
	}
	
	/**************** End Area ****************/
	.block-lpfoot_Area {
		/*background: url(../img/roboarm_line.png) no-repeat 40% top / cover;*/
	}

	/* Top */
	.lpfoot_top {
		padding: 60px 6% 30px;
	}

	.lpfoot_ttllv2 {
		margin-bottom: 40px;
	}
	.lpfoot_opendate {
		width: 88%;
		margin-bottom: 40px;
	}
	.lpfoot_ttllv3 {
		font-size: 18px;
		margin-bottom: 20px;
	}
	.lpfoot_txt {
		text-align: left;
	}

	.btnbox {
		display: block;
		margin-top: 30px;
		text-align: center;
	}
	.btnbox li {
		list-style: none;
		width: 100%;
		max-width: 360px;
		margin: 0;
	}
	.btnbox li:nth-of-type(n+2) {
		margin-top: 20px;
	}
	.btnbox a {
		padding: 25px 0;
		font-size: 16px;
		width: 100%;
	}

	.lpfoot_contact {
		margin-top: 40px;
	}

	/* bottom */
	.lpfoot_bottom > a {

		padding: 6%;
	}
	.lpfoot_bottom .lpfoot_inner {
		display: block;
	}
	.lpfoot_bottom_ttl {
		font-size: 16px;
	}
	.lpfoot_bottom_desc {
		font-size: 13px;
	}
	.lpfoot_bottom_c {
		margin: 20px 0 10px;
		text-align: center;
	}
	.lpfoot_bottom_r {
		width: 100%;
		text-align: center;
	}

	a.ire {
		display: block;
		transition: .3s;
		text-align: center;
		max-width: 320px;
		margin-left: auto;
		margin-right: auto;
	}
	
	/**************** Fix Contact Botton ****************/
	a.fixContactBtn {
		top: auto;
		bottom: 40px;
	}
}
@media only screen and (max-width:480px) {
	.fv_mov {
		right: -60%;
	}
}

/* This used to work for the parent element of button divs */
/* But it does not work with newer browsers, the below doesn't hide the play button parent div */

*::-webkit-media-controls-panel,
video::-webkit-media-controls-panel {
  display: none!important;
  -webkit-appearance: none;
}

/* Old shadow dom for play button */

*::-webkit-media-controls-play-button,
video::-webkit-media-controls-play-button {
  display: none!important;
  -webkit-appearance: none;
}

/* New shadow dom for play button */

/* This one works! */

*::-webkit-media-controls-start-playback-button,
video::-webkit-media-controls-start-playback-button {
  display: none!important;
  -webkit-appearance: none;
}

/* 2022 robot exhibitions */

a.ire {
    margin-top: 30px;
    display: block;
	transition: .3s;
	transform: translateX(50px);
    transition-duration: .3s;
    transition-delay: 1s;
    opacity: 0;
}

a.ire.alt {
    transform: unset;
    opacity: 1;
}

a.ire2 {
    margin-top: 0;
    display: block;
    transition: .3s;
    transition-duration: .3s;
    text-align: center;
    transition-delay: 1s;
    margin-bottom: 50px;
}

a.ire.js-show{
	opacity: 1;
	transform: translateX(0px);
}

.block-collabo_inner a.ire{
	text-align: center;
}

a.ire img{
	width: 100%;
	height: auto;
	max-width: 469px;
	transition-delay: unset;
	transition: .3s;
}

a.ire2 img{
	width: 100%;
	height: auto;
	max-width: 469px;
	transition-delay: unset;
	transition: .3s;
}

a.ire img:hover{
	opacity: 0.7;
	transition-delay: unset;
	transition: .3s;
}

a.ire2 img:hover{
	opacity: 0.7;
	transition-delay: unset;
	transition: .3s;
}

.block-fv_cont_inner .block-fv_btn {

}

#sub .block-fv_Area_inner {
    height: 243px;
}

#sub .block-fv_Area_inner {
    height: 243px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#sub .block-feature_Area {
    background-color: #f2f7f3;
}

#sub .block-news_Area {
    padding: 0px 30px 100px 30px;
}

#sub .block-feature_Area {
    padding: 70px 30px;
    position: relative;
    overflow: hidden;
}

#sub .feature_movie_txt {
    position: absolute;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    background-color: #ffffff;
    width: 50%;
    height: 300px;
    padding: 0 50px 0 60px;
}

#sub .alt .feature_movie_txt {
    position: absolute;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    background-color: #ffffff;
    width: 61%;
    height: 300px;
    padding: 0 80px 0 40px;
}

#sub .alt .feature_movie_txt.alt {
    padding: 0 30px 0 90px;
}

#sub .feature_btm_btn a {
    border: #004b4c solid 1px;
    display: inline-block;
    padding: 25px 0;
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    color: #004b4c;
    text-decoration: none;
    max-width: 360px;
    width: 100%;
    position: relative;
    border: 0 solid;
    box-shadow: inset 0 0 20px rgba(225, 0, 18, 0);
    outline: 1px solid;
    outline-color: #009688;
    outline-offset: 0px;
    text-shadow: none;
    -webkit-transition: all 1250ms cubic-bezier(0.19, 1, 0.22, 1);
    transition: all 1250ms cubic-bezier(0.19, 1, 0.22, 1);
}

#sub .feature_btm_btn a:hover {
    box-shadow: inset 0 0 20px rgb(73 179 169), 0 0 20px rgb(196 225 222);
    outline-color: rgba(225, 0, 18, 0);
    outline-offset: 15px;
}

.dli-caret-left {
    display: inline-block;
    vertical-align: middle;
    color: #004b4c;
    line-height: 1;
    width: 0;
    height: 0;
    border-style: solid;
    border-color: transparent;
    border-width: 6px 10px;
    border-right-color: currentColor;
    border-left: 0;
    margin-right: 10px;
}

img.shape2 {
    position: absolute;
    left: 50px;
    max-width: 472px;
    top: 30%;
    z-index: 0;
}

img.shape1 {
    position: absolute;
    right: 50px;
    max-width: 348px;
    top: 20%;
    z-index: 0;
}

#sub img.logo {
    display: block;
    margin: 0 auto;
    width: 100%;
    max-width: 303px;
    height: auto;
}

#sub img.logo.alt {
    display: block;
    margin: 0 auto;
    width: 100%;
    max-width: 343px;
    height: auto;
    position: absolute;
    z-index: 3;
    left: 0;
    right: 0;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

.ttlLv2.alt:before {
    content: "";
    display: block;
    width: 65px;
    height: 1px;
    background-color: black;
    margin: 0 auto;
    margin-top: 30px;
    /* top: 30px; */
    margin-bottom: 15px;
}

.ttlLv2.alt.no_border:before{
	display: none;
}


#sub .ttlLv2 {
    margin-bottom: 0px;
}

.readTxtBox.alt {
	margin-bottom: 30px;
}

.txtRead.alt{
	font-size: 14px;
}

.irex_image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.irex_image span {
    position: absolute;
    z-index: 1;
    font-family: "Montserrat";
    font-size: 35px;
    color: #df0522;
    padding: 10px 20px;
    /* border: solid 1px; */
    /* border-radius: 6px; */
    line-height: 1;
    display: block;
    width: 100%;
    height: 140px;
    display: flex;
    justify-content: center;
    text-align: center;
    align-items: center;
}

.irex_image span:before {
    content: "";
    background-color: white;
    height: 100%;
    display: block;
    width: 100%;
    position: absolute;
    z-index: -1;
    left: 0;
    top: 0;
    border-radius: 0;
    opacity: 0.75;
}
@media only screen and (max-width: 767px){
	.irex_image span {
		font-size: 17px;
		height: 70px;
	}

	img.shape1{
		display: none;
	}

	#sub .block-feature_Area {
		padding: 50px 30px;
	}
}

/*20220303*/
@media only screen and (min-width: 1024px) and (max-height: 760px){
    .block-fv_Area_inner {
        min-height: 700px;
    }
}
@media all and (-ms-high-contrast: none) {
.irex_image span {
    position: absolute;
    z-index: 1;
    font-family: "Montserrat";
    font-size: 25px;
    color: #df0522;
    padding: 10px 20px;
    border: solid 1px;
    border-radius: 6px;
    line-height: 1;
    display: block;
    left: 0px;
    right: 0px;
    text-align: center;
    top: 45%;
    bottom: 0px;
    max-height: 50px;
    widows: ;
    width: 300px;
    max-width: 300px;
    margin: 0 auto;
}
}

.term {
	font-size: 13.5px;
	width: fit-content;
	max-width: unset;
	display: flex;
	gap: 20px;
	line-height: 1;
	position: absolute;
	justify-content: space-between;
	right: 10px;
	bottom: 3px;
}

@media only screen and (max-width: 1023px) {
	.term{
		display: none !important;
	}
}

.term a:link, .term a:visited {
	text-decoration: none;
	color: black;
	display: flex;
	justify-content: center;
	align-items: center;
	width: fit-content;
	border: solid 1px white;
	padding: 0px 0px;
	position: relative;
	transition: .3s;
}

.term a:hover{
	opacity: 0.7;
}

.term a:before {
	content: "";
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 3px 0 3px 5px;
	border-color: transparent transparent transparent #df0522;
	margin-right: 6px;
}

.term hr {
	width: 1px;
	background-color: #e6e6e6;
	border: none;
	height: auto;
	display: block;
}

.term a:after {
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	background-color: white;
	opacity: 0.2;
	z-index: -1;
}

@media only screen and (max-width: 767px){
	.term a:link, .term a:visited {
    text-decoration: none;
    color: black;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 320px;
    border: solid 1px white;
    padding: 5px 10px;
    position: relative;
    transition: .3s;
}
.term {
	margin-top: 30px;
	font-size: 13.5px;
	/* color: white; */
	width: 100%;
	max-width: unset;
	display: flex;
	gap: 15px;
	line-height: 2;
	position: relative;
	justify-content: center;
	flex-direction: column;
	align-items: center;
}
}

@media only screen and (max-width: 380px){
.block-fv_cont_inner h1 span {
	display: inline;
}
}

.st-Header_Inner.robotics{
	position: relative;
}