/*================================================================================
FileName: _layout.scss
================================================================================*/
	.w100 {
		width: 100% !important;
	}
	.w90 {
		width: 90% !important;
	}
	.w80 {
		width: 80% !important;
	}
	.w70 {
		width: 70% !important;
	}
	.w60 {
		width: 60% !important;
	}
	.w50 {
		width: 50% !important;
	}
	.w40 {
		width: 40% !important;
	}
	.w30 {
		width: 30% !important;
	}
	.w20 {
		width: 20% !important;
	}
	.w10 {
		width: 10% !important;
	}

@media only screen and (min-width: 897px) {
	.flexPcrr {
		flex-direction: row-reverse;
	}
	.wPC100 {
		width: 100% !important;
	}
	.wPC90 {
		width: 90% !important;
	}
	.wPC80 {
		width: 80% !important;
	}
	.wPC70 {
		width: 70% !important;
	}
	.wPC60 {
		width: 60% !important;
	}
	.wPC50 {
		width: 50% !important;
	}
	.wPC40 {
		width: 40% !important;
	}
	.wPC30 {
		width: 30% !important;
	}
	.wPC20 {
		width: 20% !important;
	}
	.wPC10 {
		width: 10% !important;
	}
}

@media only screen and (max-width: 896px) {
	.wSP100 {
		width: 100% !important;
	}
	.wSP90 {
		width: 90% !important;
	}
	.wSP80 {
		width: 80% !important;
	}
	.wSP70 {
		width: 70% !important;
	}
	.wSP60 {
		width: 60% !important;
	}
	.wSP50 {
		width: 50% !important;
	}
	.wSP40 {
		width: 40% !important;
	}
	.wSP30 {
		width: 30% !important;
	}
	.wSP20 {
		width: 20% !important;
	}
	.wSP10 {
		width: 10% !important;
	}
}



.coverWrap {
	position: relative;
}
.coverWrap .video-control {
	position: absolute;
	top: 10px;
	right: 10px;
} 
.cover {
	position: relative;
	/*height: calc(100vh - 130px);*/
}

@media screen and (min-width: 897px){
	.cover__card__body{
    color: #000;
    text-align: center;
    background-color: rgba(255,255,255,0.75);
    padding: 35px 25px 50px 25px;
    width: 80%;
    margin: auto;
}	
	
.cover__title {
    display: block;
    width: 100%;
	max-width: 100%;
    /*padding-top: 4em;*/
	font-size: 40px;
	font-weight: 500;
	line-height: 1.6;
}
}
@media screen and (max-width: 896px){
	.cover__card__body{
		color: #000;
	text-align: center;
    background-color: rgba(255,255,255,0.7);
	padding: 30px 20px 20px;
	margin-bottom: 50px;
	width: 90%;
    margin: 0 auto 50px
}	
	
.cover__title {
    display: block;
    width: 100%;
	max-width: 100%;
    /*padding-top: 4em;*/
	font-size: 24px;
	font-weight: 500;
	line-height: 1.6;
}
}

.cover__card {
	overflow: hidden;
	/*max-width: 50%;*/
	padding: /*2.5%*/4% 2.5% 8%;
	margin-top: 20px;
}
.cover__scrollBtn {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 5px;
	width: 100px;
	margin: auto;
}
.cover__scrollBtn__link {
	display: block;
	text-align: center;
	color: #fff;
	font-size: 12px;
	cursor: pointer;
}
.cover__scrollBtn__border {
	position: relative;
	left: 50%;
	overflow: hidden;
	width: 1px;
	height: calc(50px - 1em);
    background-color: hsla(0, 0%, 100%, .4);
}
.cover__scrollBtn__border:before {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	animation: transrateY-up-down 2s infinite;
	background-color: #fff;
	content: "";
}

/* スクロール インジケータ用 */
@keyframes transrateY-up-down {
	0%{transform:translate3d(0, -100%, 0)}
	100%{transform:translate3d(0, 100%, 0)}
}

@media screen and (max-width: 896px){
	/*.cover {
		height: calc(100vh - 115px);
	}*/
	.cover__card {
		max-width: 100%;
		margin-top: 30px;
	}
	.cover__scrollBtn__link {
		font-size: 10px;
	}
}
@media screen and (orientation: landscape){
	.cover__card {
		/*max-width: 50%;*/
	}
}

.text-hide {
    font-size: 0;
    color: transparent;
}
.text-color--white {
	color: #fff;
}

.buttons{
	display: flex;
	  justify-content: center;
  align-items: center;
}



 .anc_btn {
  width: 150px;
  height: 150px;
margin-right: 15px;
	   overflow: hidden;
	font-weight: normal;
	 border-radius: 75px;

}

.anc_btn:last-of-type{
	margin-right: 0;
}

.anc_btn a {
  display: block;
  width: 100%;
  height: 100%;
  line-height: 1.6em;
  color: #fff;
  text-align: center;
  /*font-weight: 550;*/
  background-color: #fff;
  text-decoration: none;
		 padding: 15px;
	box-sizing: border-box;

  position: relative;
  z-index: 2;
}
.anc_btn a:before {
  content: '';
  position: absolute;
  top: 0%;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: #056EE4;
  transition: all 100ms linear;
}
.anc_btn a:hover {
  color: #056EE4;
}
.anc_btn a:hover:before {
  top: -100%;
}

.anc_btn a:after {
	    content: "";
    display: block;
    margin-right: 12px;
    /*top: 0;*/
    bottom: 12px;
	left: 0;
	right: 0;;
    margin: auto;
    position: absolute;
    height: 8px;
    width: 18px;
    /*right: 14px;*/
	background: url(https://assets.jpn.pioneer/ja/assets/img/icon_arrow_w_down01.svg) no-repeat bottom center;
    background-size: 18px;
	
}

.anc_btn a:hover:after {

	background: url(https://test-assets.jpn.pioneer/ja/assets/img/icon_arrow_down01.svg) no-repeat bottom center;

	
}


.anc_btn span.strength{
	display: block;
	font-size: 12px;
	margin-bottom: 10px;
}

.anc_btn span.strength_title{
	font-weight: 600;
	font-size: 1.3rem;
	display: block;
}

.anc_btn:nth-of-type(1) span.strength_title{
	font-size: 1.0rem;
}

.anc_btn:nth-of-type(2) span.strength_title,
.anc_btn:nth-of-type(3) span.strength_title{
	padding-top: 20px;
}


.relative{
	position: relative;
}

.absolute{
	position: absolute;
}

@media screen and (min-width: 897px){
.section1,
.section2,
.section3,
.section4{
	margin-bottom: 300px;
	padding-top: 100px;
}
}

@media screen and (max-width: 896px){
.section1,
.section2,
.section3,
.section4{
	margin-bottom: 200px;
	padding-top: 50px;
}
}


@media screen and (min-width: 897px){
.boxStyle11 {
    max-width: 50%;
    margin: 0 auto;
    width: 50%;
	float: left;
	position: relative;
}
}
@media screen and (max-width: 896px){
	.boxStyle11 {
	 max-width: 100%;
    margin: 0 auto;
    width: 100%;
	float: left;
	position: relative;
    padding-bottom: 40%;
	}
}

.boxStyle11.w100 {
    max-width: 100%;
    margin: 0 auto;
    width: 100%;
	float: none;
}

@media screen and (min-width: 897px){
.boxStyle11.w100 {
	min-width: 1200px;/*20230818*/
	}
}

@media screen and (min-width: 897px){
	.boxStyle11.designBox {
	background: #f4f4f4;
	}		
}


@media screen and (max-width: 896px){
	.boxStyle11.piomatixBox {
	padding-bottom: 50%;
	background: url(/ja/strengths/img/piomatix_bg.png) repeat-y;
	background-size: 100%;
	}	
	.boxStyle11.saasBox {
	padding-bottom: 50%;
	background: #eae5fb;
	}
	.boxStyle11.soundBox {
	padding-bottom: 50%;
	background: #150222;
		color: #fff;
	}
	.boxStyle11.designBox {
	padding-bottom: 50%;
	background: #f4f4f4;
	}	
	.boxStyle11.crdlBox {
	padding-bottom: 50%;
	background: #053388;
	}	
	.boxStyle11.soundBox {
	padding-bottom: 50%;
	background: #061023;
	}
}


@media screen and (max-width: 896px){
.soundBox .linkStyle01_black {
    color: #fff !important;
	border: solid #fff 1px;
}
  .soundBox .arrow.linkStyle01_black:after{
      background: url(https://assets.jpn.pioneer/ja/assets/img/icon_arrow01_w.svg) no-repeat;
	  background-size: 7px;
  }
}

@media screen and (min-width: 897px){
.boxStyle11.box-right {
margin-top: 200px;
}
}
/*
.boxStyle11 .bs11-wrapper {
    position: absolute;
    width:  50%;
    margin: 0 auto;
    top: 0;
    left: 0;
    height: 100%;
    right: 0;
}
*/


@media screen and (min-width: 897px){
.w100 .bs11_txt-box{
    position: absolute;
    width: 30%;
    height: auto;
	top:30%;
    left: 100px;
}
	
.w100 .bs11_txt-box.right{
    position: absolute;
    width: 30%;
    height: auto;
	top:30%;
    right: 40px;
	left: auto;
}

.box-left .bs11_txt-box{
	position: absolute;
	width: 50%;
	height: auto;
	bottom:30px;
	right: 30px;
	
}

.box-right .bs11_txt-box{
	position: absolute;
	width: 50%;
	height: auto;
	bottom:30px;
	left: 30px;
	
}
}

@media screen and (max-width: 896px){
.bs11_txt-box{
    position: absolute;
    width: 100%;
    height: auto;
	bottom:7%;
	text-align: center;
}

.box-left .bs11_txt-box{
    position: absolute;
    width: 100%;
    height: auto;
	bottom:7%;
    left: 0;
	right: 0;
}

.box-right .bs11_txt-box{
    position: fixed;
    width: 100%;
    height: auto;
	bottom:7%;
    left: 0;
	right: 0;
}
}
@media screen and (min-width: 897px){
.soundlab-box1{
	box-sizing: border-box;
	padding: 0 0 50px;
}
}
@media screen and (max-width: 896px){
.soundlab-box1{
	position: relative;
	padding-bottom: 50%;
	background: #f5f5f5;
}
}

@media screen and (min-width: 897px){
.soundlab-box1 .soundlab-boxInner{
	position: relative;
	padding-left: 10px;
}
}

@media screen and (min-width: 897px){
.soundlab_txt-box{
    position: absolute;
    width:auto;
    height: auto;
    top: 20px;
    right: 30px;
	text-align: right;
}
}
@media screen and (max-width: 896px){
.soundlab_txt-box{
    position: absolute;
    width:100%;
    height: auto;
    bottom: 7%;
	text-align: center;
}
}
@media screen and (min-width: 897px){
.boxStyle11 .ttl,
.soundlab_txt-box .ttl{
    font-size: 28px;
    padding: 0;
}
}
@media screen and (max-width: 896px){
.boxStyle11 .txt {
    line-height: 1.625;
    letter-spacing: .025em;
    margin-bottom: 20px;
}
}

.fadeBlock {
overflow: hidden;
  opacity: 0;
  -webkit-transform: translateY(30px);
  transform: translateY(30px);
  -webkit-transition: all 1s;
  transition: all 1s;
}

.fadeIn {
  opacity: 1 !important;
  -webkit-transform: translateY(0) !important;
  transform: translateY(0) !important;
}




.piomatix-img02{
	position: absolute;
	top:-50px;
}





.moveBlock {
        opacity: 0 !important;
        transform: translateY(200px) !important;
        transition: all 1s;
}

.moveBlock.run {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.piomatix-img02.moveBlock {	
	transition-delay: 2s;
}


@media screen and (min-width: 897px){
.productAre{
	display: flex;
	justify-content: center;
	margin-bottom: 130px;
}
}
@media screen and (max-width: 896px){
.productAre{
    width: 86%;
    margin: 0 auto 80px;
}
}
@media screen and (min-width: 897px){
.productAre .productBox{
	width: 200px;
	height: auto;
	margin: 0 20px;
	text-align: center;
}
}

@media screen and (max-width: 896px){
.productAre .productBox {
    width: 46%;
    height: auto;
    margin: auto 2% 20px;
    text-align: center;
    box-sizing: border-box;
    float: left;
}
}
@media screen and (min-width: 897px){
.productAre .productImgBox{
	width: 200px;
	height: 200px;
	border: solid 1px #ddd;
    border-radius: 50%;
	margin-bottom: 20px;
}
}
@media screen and (max-width: 896px){
.productAre .productImgBox{
	width: 100%;
	height: 100%x;
	border: solid 1px #ddd;
    border-radius: 50%;
	margin-bottom: 10px;
}
}
.productAre .productBox:hover .productImgBox{
	background: #f5f5f5;
}


.productAre .productImgBox img{
	width: 100%;
	height: 100%;
}

.productAre .linkStyle02_black{
	font-weight: normal;
	display: inline-block;
	line-height: 1.4;
}
.productAre .productBox:hover .linkStyle02_black{
	opacity: 0.6;
}
.productAre .linkStyle02_black:after{
	background-size: 8px;
}
.productAre .window.linkStyle02_black:after{
	background-size: 13px;
}
.productAre .linkStyle02_black:not(.window):hover:after{
	transform: translate3D(0, 0, 0);
}
@media screen and (max-width: 896px){
.productAre .linkStyle02_black:not(.window){
	padding-right: 15px;
}
}

@media screen and (min-width: 897px){
/*.linkStyle01:hover, .linkStyle01_black:hover, */.linkStyle01_white:hover {
    border-color: #000;
}
}


@media screen and (min-width: 897px){
.saasBox .linkStyle01_black,
.soundBox .linkStyle01_black	{
	margin-left: 0!important;
}
}

@media screen and (max-width: 896px){
#wrapper_bgVideo{
	display: none;
	}


.mv_sp {
	position: fixed;
	top:0;
	width: 100vmin;
	height: auto;
}
}
	

.spmv{
	position: fixed;
	top:0;
	width: 100vmin;
	height: auto;
}

	.spmv img{
		width: 100%;
		height: auto;
	}
	
	

	
	
	
	
	/*
	.mv_sp img{
		width: auto;
		height: 100%;
	}*/
	
		


@media screen and (min-width: 897px){
.fwPC200{
		font-weight: 200;
	}
}

	
@media screen and (max-width: 896px){
.ttlStyle02,
.fwSP400{
		font-weight: 400;
	}
	
	
.fwSP500{
		font-weight: 500;
	}
}

@media screen and (min-width: 897px){
	body{
		background: url(../img/mv_pc_01.jpg) no-repeat;
		/*background-size: contain;*/
	}
}

/*
@media screen and (max-width: 896px){
	body{
		background: url(../img/mv_sp_01.jpg) no-repeat;
	}
}*/

/*
.movie {
	position: absolute;
	width: 100%;
	height:100%;
	overflow: hidden;
}

.movie::after {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	width: /*100vh*//*100%;
	height: /*100vh*//*100%;
	background-image: radial-gradient(#111 20%, transparent 21%);
	background-size: 4px 4px;
	background-position: 0 0, 2px 2px;
}
*/


.movie{
    opacity: 0.5;
    background: url("../img/02.png") center center;
	position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    overflow: hidden;
    border: none;
    padding: 0;
    margin: 0;
}
/*
@media screen and (max-width: 896px){
	.movie{position: absolute;}
}*/
/*@media screen and (min-width: 897px){*/
/*
.wall-overray2 {
    z-index: 999;
    position: fixed;
    height: 100%;
    width: 100%;
    top: 0;
	display: none;
}	
*/	
	
.wall-overray2{
	z-index: 999;
    position: fixed;
    height: 100%;
    width: 100%;
    top: 0;
	
	display: none;
	background: #fff;
		opacity: 0;
		animation-name: overray01;
        animation-duration: 4s;
        animation-iteration-count: 1;
        animation-timing-function: ease;
        animation-fill-mode:forwards;
}

.wall-overray2{
	display: block;
}	

@keyframes overray01 {
  0% {
    opacity: 1;
  }
30% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

.wall-overray2.run{display: none;}
/*}*/
.fadeIn0{
	opacity: 0;
		animation-name: animation00;
        animation-duration: 4s;
        animation-iteration-count: 1;
        animation-timing-function: ease;
        animation-fill-mode:forwards;
}


@keyframes animation00 {
  0% {
    opacity: 0;
  }
30% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}


.comment{
	position: absolute;
	top:3px;
}




/*
.circleIn{
	transition: all 2s 0s ease;

	clip-path: circle(0% at center);
	        top:0;
        bottom: 0;
        right: 0;
        left: 0;
        margin: auto;
}

.circleIn.run{
	clip-path: circle(50% at center);
}
*/



/*
@media screen and (max-width: 896px){
.circleIn{
	transition: all 1s 0s ease;
	clip-path: circle(0% at center);
	opacity: 0:
}

.circleIn.run{

	clip-path: circle(50% at center);
	opacity: 1:
}
}
*/

.t-attention-notes{
    /*display: inline-block;*/
	overflow: hidden;
	margin-top: 80px;
}
@media screen and (max-width: 896px){
.t-attention-notes{
	margin-top: 40px;
}
}

.t-attention-notes-inner{
    display: block;
    float: right;
}

.t-attention-notes .notes01{
	margin-left: 0;
}


@media screen and (min-width: 897px){
	.verif-boxInner{
		width: 1060px;
		height: 335px;
		background: url(../img/bg_verif.png)no-repeat left top;
	}
}
@media screen and (max-width: 896px){
	.bgVerif{
		background: #12153e;
	}
	.boxStyle11.advancedtechnologyBox{
		background: rgb(189,226,242);
		background: linear-gradient(52deg, rgba(189,226,242,1) 0%, rgba(95,198,240,1) 100%);

	}
	.boxStyle11.automotive-camera-ai-solutions{
		background: #19161d;

	}
	.boxStyle11.dataBox{
		background: rgb(254,252,249);
		background: linear-gradient(90deg, #e5c6d2 0%, #e8d8de 100%);

	}
	.boxStyle11.dataBox .bs11_txt-box{
		bottom: 10%;
	}
	.designBox{
		background: #000;
	}
}
.i_cvSite{
	font-size: 16px;

	width: 150px;
	height: 150px;
	position: relative;
	font-weight: 600;
	line-height: 1.5;
	padding-top: 40px;
	opacity: 0;

	animation: fadeInFixBtn 1s 2s ease-in-out forwards;
}
.i_cvSite span{
	font-weight: 500;
}
.i_cvSite:after{
	background: url("../img/fix_btn_data.png");
	background-size: 150px;
	width: 150px;
	height: 150px;
	position: absolute;
	top: 0;
	right: 0;
	z-index: -1;
	filter: drop-shadow(0 0 5px rgba(0,0,0,0.2));

}
@keyframes fadeInFixBtn {
	0% {
	  opacity: 0;
	}
	100% {
	  opacity: 1;
	}
  }
  
.i_cvSite:hover{
	opacity: 0.5 !important;
  }

@media screen and (max-width: 896px){
	.i_cvSite{
		font-size: 14px;
		width: 120px;
		height: 120px;
		position: relative;
		font-weight: 500;
		padding-top: 32px;
		line-height: 1.3;
		animation: fadeInFixBtn 1s 0s ease-in-out forwards;
	}
	.i_cvSite:after{
		background-size: 120px;
		width: 120px;
		height: 120px;
		position: absolute;
		top: 0;
		right: 0;
		z-index: -1;
	
	}
	.i_cvSite span{
		font-weight: 400;
	}

}
@media screen and (min-width: 897px){
.fixBtnArea{
	top:155px;
	bottom: inherit;
}
}

@media screen and (max-width: 896px){
	.fixBtnArea{
		bottom: 100px;
	}
	}