@charset "UTF-8";

/*--------------------------------------------------------------------------------
	top
--------------------------------------------------------------------------------*/

/* header */

.c-header {
	background: none;
}

.c-header-inner-logo > a {
	background: url(../../img/common/logo-white.svg) no-repeat center center / contain;
}

.c-header.is-scroll {
	background:rgba(255,255,255,1);
}

.c-header.is-scroll .c-header-inner-logo > a {
	background: url(../../img/common/logo-red.svg) no-repeat center center / contain;
}

.c-header-navbtn-link span,
.c-header-navbtn-link:before,
.c-header-navbtn-link:after{
	background: #ffffff;
}

@media only screen and (min-width: 768px){

	.c-header-inner-nav > ul > li > a {
		color: #ffffff;
	}

	.c-header.is-scroll .c-header-inner-nav > ul > li > a {
		color: #111F4B;
	}

}



/* main */

.c-main {
	padding: 0 0 0 0;
}

@media only screen and (min-width: 768px){

	.c-main {
		padding: 0 0 0 0;
	}

}



/* mainv */

.p-top-mainv {
	width: 100%;
	height: 100vh;
	background: #000000;
	position: relative;
}

.p-top-mainv-start {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	overflow: hidden;
	/*background: #000000;*/
	transition: all 3.0s ease-out 1.5s;
	z-index:2;
}

.p-top-mainv-start.js-act {
	opacity: 0;
}

.p-top-mainv-pic {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	overflow: hidden;
	z-index:1;
	animation-name: fadein;
	animation-delay: .5s;
	animation-duration: 3.5s;
	animation-timing-function: ease-out;
	animation-fill-mode: forwards;
	opacity: 0;
}

@keyframes fadein {
  0% {
     opacity: 0;
  }
  100% {
     opacity: 1;
  }
}

.p-top-mainv-pic img,
.p-top-mainv-pic video {
	position: absolute;
	width: auto;
	height: auto;
	min-width: 100%;
	min-height: 100%;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	animation: fadein 5s ease-out forwards;
}

@keyframes fadein {
  0% {opacity: 0}
  100% {opacity: 1}
}

.p-top-mainv-txts {
	position: absolute;
	top: calc( ( 100vh / 2 ) - 20px);
	left: 50%;
	width: 100%;
	max-width: 1094px;
	transform: translate(-50%,-50%);
	z-index:1;
	padding: 0 20px;
	box-sizing: border-box;
}

.p-top-mainv-lead {
	font-size: 1.7rem;
	line-height: 2;
	color: #ffffff;
}

.p-top-mainv-lead > div {

}

.p-top-mainv-lead > div > span {
	box-decoration-break: clone;
	-webkit-box-decoration-break: clone;
	display: inline;
	padding: 0.15em 10px;
	background-color: #CA0915;
}

.p-top-mainv-lead > div > 

.p-top-mainv-lead > span + span {
	margin: 10px 0 0 0;
}

.p-top-mainv-lead > div > span > br {
	display: none;
}

.p-top-mainv-pr {
	display: block;
	margin-top: 40px;
	background: #ffffff;
	padding: 15px 15px;
	/*max-width: calc(100vw - 40px);*/
	margin: 20px auto 0  auto;
}

.p-top-mainv-pr-ttl {
	font-size: 1.8rem;
	line-height: 1;
	padding: 0 0 10px 0;
	margin: 0 0 10px 0;
	border-bottom: solid 1px #707070;
}

.p-top-mainv-pr-cts {

}

.p-top-mainv-pr-cts .p-top-mainv-pr-cts-box {

}

.p-top-mainv-pr-cts .p-top-mainv-pr-cts-box:nth-of-type(n+2) {
	border-top: solid 1px #eaeaea;
	margin: 10px 0 0 0;
	padding:10px 0 0 0;
}

.p-top-mainv-pr-cts-box > a {
	display: block;
}

.p-top-mainv-pr-cts-box-date {
	font-size: 1.6rem;
	line-height: 1.2;
}

.p-top-mainv-pr-cts-box-txt {
	margin: 2px 0 0 0;
	font-size: 1.6rem;
	line-height: 1.3;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
}

.p-top-specialtopics {
	/*position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	z-index: 1;*/
	margin: 20px auto 0 auto ;
	/*max-width: calc(100vw - 40px);*/
}

.p-top-specialtopics-01 {
	background: #FFFFFF;
}



.p-top-specialtopics-01-inner {
	text-align: center;
	display: flex;
	align-items: center;
	flex-wrap: nowrap;
	min-height: 58px;
}

.p-top-specialtopics-01-inner p {
	width: 50%;
	text-align: center;
}

.p-top-specialtopics-01-inner p:first-child {
	border-right: 1px solid #707070;
}

.p-top-specialtopics-01-inner p img {
	width: 83%;
	max-width: 200px;
}


@media only screen and (min-width: 950px){
	.p-top-specialtopics-01-inner p img {
		height: 38px;
		width: auto;
		max-width: 100%;
	}
}

.p-top-specialtopics-02 {
	background:#E8E8E8;
}

.p-top-specialtopics-02-inner {
	line-height: 1.2;
}

.p-top-specialtopics-02-inner a {
	display: block;
	padding: 10px 15px;
	position: relative;
	font-size: 1.6rem;
	transition: opacity 0.5s;
}

.p-top-specialtopics-02-inner a:hover {
	opacity: 0.5;
}

@media only screen and (min-width: 374px) and (max-width: 376px){
	.p-top-mainv-txts {
		top:calc( ( 100vh / 2 ) + 30px);
	}
	
	.p-top-mainv,
	.p-top-mainv-pic {
		height: 105vh;
	}
}

@media only screen and (min-width: 768px){

	.p-top-mainv-txts {
		top: calc( ( 100vh / 2 ) + 30px);
	}

	.p-top-mainv-lead {
		font-size: 2.6rem;
	}

	.p-top-mainv-lead > div > span > br {
		display: block;
	}

	.p-top-mainv-pr {
		margin-top: 32px;
		width: auto;
		display: flex;
		padding: 13px 15px;
	}

	.p-top-mainv-pr-ttl {
		white-space: nowrap;
		padding: 5px 24px 0 0;
		margin: 0 0 0 0;
		border-bottom: none;
		border-right: solid 1px #707070;
	}

	.p-top-mainv-pr-cts {
		padding: 0 0 0 0;
		flex: 1;
	}

	.p-top-mainv-pr-cts .p-top-mainv-pr-cts-box {
		padding:2px 0 2px 16px;
	}

	.p-top-mainv-pr-cts .p-top-mainv-pr-cts-box:nth-of-type(n+2) {
		margin: 16px 0 0 0;
		padding: 2px 0 0 16px;
		position: relative;
		border-top: none;
	}

	.p-top-mainv-pr-cts .p-top-mainv-pr-cts-box:nth-of-type(n+2):before {
		position: absolute;
		top: -8px;
		left: 17px;
		width: calc(100% - 17px);
		height: 1px;
		content: "";
		background: #eeeeee;
	}
	
	.p-top-mainv-pr-cts-box > a .p-top-mainv-pr-cts-box-inner {
		display: flex;
		justify-content: space-between;
		width: 100%;
	}
	
	.p-top-mainv-pr-cts-box-date {
		display: inline-block;
		width: 125px;
		padding-left: 15px;
		box-sizing: border-box;
		line-height: 1.5em;
		height: 1.5em;
		border-right: 1px solid #707070;
	}
	
	.p-top-mainv-pr-cts-box-txt {
		max-width: auto;
		width: calc(100% - 160px);
	}
	
	.p-top-specialtopics {
		display: flex;
		margin: 22px 0 0 0;
	}

	.p-top-specialtopics-01 {
		width: calc(100% - 360px);
		padding: 0;
		height: 80px;
	}
	
	.p-top-specialtopics-01-inner {
		height: 80px;
	}

	.p-top-specialtopics-02 {
		width: 360px;
		height: 80px;
	}

	.p-top-specialtopics-02-inner {
		height: 80px;
		display: flex;
		flex-wrap: wrap;
		align-content: center;
	}

	.p-top-specialtopics-02-inner a {
		padding: 0 25px;
		font-size: 1.6rem;
	}

	.p-top-specialtopics-02-inner a:before {
		position: absolute;
		width: 70px;
		height: 10px;
		content: "";
		background: url(../../img/top/icn-arrow-02.svg) no-repeat center center / contain;
		bottom: 5px;
		right: 20px;
		left: auto;
	}

}


/* platform */

.p-top-platform {
	position: relative;
	overflow: hidden;
}

.p-top-platform-pic {
	position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    min-height: 100%;
    overflow: hidden;
    z-index: -1;
}

.p-top-platform .c-cts-inner {
	z-index: 1;
	position: relative;
	top: 0;
	left: 0;
}

.p-top-platform video {
    min-width: 100%;
    min-height: 100%;
}

.p-top-platform-lead {
	color: #ffffff;
	margin: 0 0 34px 0;
}

.p-top-platform-lead-ttl {
}

.p-top-platform-lead-ttl img {
	width: 100px;
	margin-bottom: 20px;
}

.p-top-platform-lead-txt {
	font-size: 1.8rem;
	line-height: 1.2;
	letter-spacing: 0;
	color: #ffffff;
}


.p-top-platform-list {

}

.p-top-platform-list-item {
	padding:3px 6px;

}

.p-top-platform-list-item-inner {
	background: rgba(202,9,21,0.6);
	border: 1px solid rgba(255,255,255,0.6);
	padding: 8px 32px 8px 12px;
	height: 100%;
	border-radius: 3px;
	position: relative;
}

.p-top-platform-list-item-inner:after {
	content: "";
	display: block;
	width: 26px;
	height:  26px;
	position: absolute;
	top: calc(50% - 13px);
	right: 8px;
}

.p-top-platform-list-item-inner--icn-01:after {
	background: url("../../img/top/icn-pf-01.svg") no-repeat center center;
	background-size: contain;
}

.p-top-platform-list-item-inner--icn-02:after {
	background: url("../../img/top/icn-pf-02.svg") no-repeat center center;
	background-size: contain;
}

.p-top-platform-list-item-inner--icn-03:after {
	background: url("../../img/top/icn-pf-03.svg") no-repeat center center;
	background-size: contain;
}

.p-top-platform-list-item-inner--icn-04:after {
	background: url("../../img/top/icn-pf-04.svg") no-repeat center center;
	background-size: contain;
}

.p-top-platform-list-item-inner--icn-05:after {
	background: url("../../img/top/icn-pf-05.svg") no-repeat center center;
	background-size: contain;
}

.p-top-platform-list-item-inner-subt {
	font-size: 1.7rem;
	line-height: 1.2;
	letter-spacing: 0.03em;
	color: #ffffff;
}

.p-top-platform-list-item-inner-txt {
	font-size: 1.6rem;
	line-height: 1.2;
	color: #ffffff;
	margin: 8px 0 0 0;
}

.p-top-platform-list-item-inner-txt > span {
	padding: 0 0.36em;
}

.p-top-platform-lead-txt-link {
	padding-top: 15px;
}

.p-top-platform-lead-txt-link a {
	color: #FFF;
	display: inline-block;
	padding-right: 68px;
	position: relative;
	transition: opacity 0.5s;
}

.p-top-platform-lead-txt-link a:hover {
	opacity: 0.5;
}

.p-top-platform-lead-txt-link a:before {
    position: absolute;
	display: inline-block;
    width: 50px;
    height: 9px;
    content: "";
    background: url(../../img/top/icn-arrow-02.svg) no-repeat center center / contain;
    bottom: 4px;
    right: 0;
    left: auto;
}

@media only screen and (min-width: 768px){

	.p-top-platform-pic {
		height: 100%;
	}
	
	.p-top-platform-lead {
		display: flex;
		margin: 0 0 140px 0;
	}
	
	.p-top-platform-lead-ttl {
		font-size: 8.0rem;
		font-weight: 300;
		line-height: 1;
		width: 220px;
		position: relative;
	}
	
	.p-top-platform-lead-ttl img {
		width: 140px;
		position: absolute;
		top: 8px;
		left: 0;
	}
	
	.p-top-platform-lead-txt {
		font-size: 2.4rem;
		line-height: 1.1;
		letter-spacing: 0;
		color: #ffffff;
		padding-top: 10px;
	}
	
	.p-top-platform-lead-txt-link {
		padding-top: 30px;
	}
	
	.p-top-platform-list {
		margin-left: -6px;
		margin-right: -6px;
		display: flex;
	}

	.p-top-platform-list-item {
		padding:6px 6px;
		flex-grow: 1;
		max-width: 52%;
	}

	.p-top-platform-list-item-inner {
		border-radius: 6px;
		padding: 17px 20px;
		height: 100%;
	}
	
	.p-top-platform-list-item-inner:after {
		width: 40px;
		height: 40px;
		right: 20px;
		top: calc(50% - 20px);
	}	

	.p-top-platform-list-item-inner-subt {
		font-size: 2.0rem;
		line-height: 1.1;
		letter-spacing: 0.03em;
		color: #ffffff;
	}

	.p-top-platform-list-item-inner-txt {
		font-size: 1.8rem;
		line-height: 1.2;
		color: #ffffff;
		margin: 8px 0 0 0;
	}

	.p-top-platform-lead-txt-link a {
		padding-right: 88px;
	}

	.p-top-platform-lead-txt-link a:before {
		width: 70px;
		height: 10px;
		bottom: 8px;
	}

}

@media only screen and (min-width: 1300px){
	.p-top-mainv-pr{
		margin-top: 60px;
	}
	
	.p-top-specialtopics {
		margin-top: 30px;
	}
	
	.p-top-mainv-lead {
		font-size: 2.8rem;
		line-height: 2em;
	}
}

/* mission */

.p-top-mission {
	background: #F4F4F4;
}

.p-top-mission-subt {
	font-size: 2.4rem;
	line-height: 1.2;
	font-weight: 400;
	color: #E60012;
}

.p-top-mission-inner {
	width: 100%;
	margin: 30px 0 0 0;
	font-size: 1.8rem;
	line-height: 1.2;
}

.p-top-mission-inner p {

}

@media only screen and (min-width: 768px){

	.p-top-mission-subt {
		font-size: 6.4rem;
	}

	.p-top-mission-inner {
		margin: 40px 0 0 0;
		font-size: 2.0rem;
	}

}





/* company */

.p-top-company {
	background: #ffffff;
}

.p-top-company-inner {
	position: relative;
}

.p-top-company-table-wrapper {

}

.p-top-company-table {
	display: table;
	width: 100%;
}

.p-top-company-table > dt {
	display: table-cell;
	vertical-align: top;
	background: #F4F4F4;
	width: 160px;
	border-right: solid 5px #ffffff;
	border-bottom: solid 5px #ffffff;
	padding: 10px 0 8px 10px;
	font-size: 1.6rem;
	line-height: 1.2;
	font-weight: 300;
}

.p-top-company-table > dd {
	display: table-cell;
	vertical-align: top;
	background: #F4F4F4;
	border-bottom: solid 5px #ffffff;
	padding: 10px 10px 8px 10px;
	font-size: 1.6rem;
	line-height: 1.2;
	font-weight: 300;
}

.p-top-company-map {
	margin:30px 0 0 0;
}

.p-top-company-map-inner {
	width: 100%;
	height: 500px;
	filter: grayscale(100%);
}

.p-top-company-map-inner iframe {
	width: 100%;
	height: 100%;
}

.p-top-company-txt-01 {
	font-size: 1.4rem;
	font-weight:300;
}

@media only screen and (min-width: 768px){

	.p-top-company-table > dt {
		width: 240px;
		padding: 12px 15px 10px 15px;
		font-size: 1.8rem;
	}

	.p-top-company-table > dd {
		padding: 12px 20px 10px 20px;
		font-size: 1.8rem;
	}
	
	.p-top-company-txt-01 {
		font-size: 1.6rem;
		padding-top: 10px;
	}

}

/* newsrelease */

.p-top-pressrelease {
	background: #FAFAFA;
}

/*partners*/

.p-top-partners {
	padding: 35px 0 30px 0;
} 

.p-top-partners-ttl {
	margin-bottom: 14px;
	text-align: center;
	font-size: 1.3rem;
	position: relative;
	line-height: 1;
	padding-left: 20px;
	padding-right: 20px;
	max-width: 1074px;
	margin-left: auto;
	margin-right: auto;
}

.p-top-partners-ttl:before {
	content: "";
	height: 1px;
	width: calc(100% + 40px);
	position: absolute;
	top: 50%;
	left: -20px;
	background: #111F4B;
}

.p-top-partners-ttl h2 {
	display: inline-block;
	padding: 0 15px;
	background: #FFF;
	position: relative;
	font-weight: 400;
}

{
	text-align: center;
}

.p-top-partners .c-ttl-01 {
    margin-bottom: 10px;
}



@media only screen and (min-width: 768px){
	
	.p-top-partners {
		padding: 60px 0 23px 0;
	}	
	
	.p-top-partners-ttl {
		margin-bottom: 43px;
	}
	
	.p-top-partners-ttl:before {
		width: 100%;
		top: 50%;
		left: 0;
	}	

	.p-top-partners-ttl h2 {
		padding:0 30px;
	}

}

@media only screen and (min-width: 1000px){
	
	.p-top-partners {
		overflow-x: hidden;
	}
	
	.p-top-partners .c-pc-v {
		width: 1000px;
		margin: 0 auto;
		overflow: visible;
	}
	.slick-slider,
	.slick-list,
	.slick-track {
		overflow: visible !important;
	}
}

/* product */

.p-top-product {
	background: #ffffff;
	line-height: 1.2;
}

.p-top-product-inner {
	position: relative;
}

.p-top-product-txt-01 {
	font-size: 1.8rem;
}

.p-top-product-ttl-01 {
	font-size: 2.2rem;
	padding:0 0 10px 0;
	border-bottom: 1px solid #111F4B;
}

.p-top-product-wrapper-01 {
	padding-bottom: 20px;
	border-bottom: 1px solid #B6BAC8;
	margin-bottom: 25px;
}

.p-top-product-item-01 {
	margin-top: 25px;
}

.p-top-product-txt-02 {
	font-size: 1.6rem;
	padding: 15px 0;
}

.p-top-product-list-01 {
	background: #CA0915;
	color: #FFF;
	padding: 15px;
	font-size: 1.6rem;
}

.p-top-product-list-01 li {
	padding-left: 1em;
	position: relative;
}

.p-top-product-list-01 li:before {
	content: "";
	display: inline-block;
	width: 1em;
	height: 1.2em;
	position: absolute;
	top: 0;
	left: 0;
	background: url("../../img/top/icn-square-01.svg") no-repeat left center;
}

.p-top-product-btn-01 {
	text-align: center;
	font-size: 1.7rem;
}

.p-top-product-btn-01 a {
	display: inline-block;
	position: relative;
	color: #FFF;
	background:#111F4B ;
	padding: 0.5em 2.5em 0.5em 1.5em;
	line-height: 1em;
}

.p-top-product-btn-01 a:after {
	content: "";
	display: inline-block;
	width: 1em;
	height: 1em;
	background:url("../../img/top/icn-mail-01.svg") no-repeat center center;
	margin-left: 10px;
	position: absolute;
	top: calc(50% - 0.5em);
	right: 1em;
}

@media only screen and (min-width: 768px){

	.p-top-product-txt-01 {
		font-size: 2.0rem;
	}
	
	.p-top-product-ttl-01 {
		font-size: 2.8rem;
		padding-left: 10px;
	}
	
	.p-top-product-wrapper-01 {
		display: flex;
		justify-content: space-between;
		padding-bottom: 50px;
		margin-bottom: 40px;
	}

	.p-top-product-item-01 {
		margin-top: 60px;
		padding: 0 10px 20px 10px;
		width: 45%;
	}
	
	.p-top-product-txt-02 {
		padding: 25px 10px;
	}
	
	.p-top-product-list-01 {
		padding: 25px;
		font-size: 2.0rem;
	}
	
	.p-top-product-btn-01 {
		font-size: 2.0rem;
	}
	
	.p-top-product-btn-01 a:after {
		margin-left: 20px;
		
	}

}
