@charset "UTF-8";
/* media query : mobile */
@media screen and (max-width:768px) {
}
/* media query : desktop */
@media screen and (min-width:769px) {
}
/* media query : tablet */
@media screen and (min-width:769px) and (max-width:1024px){
}
/* 3.1 home
--------------------------------------------------------------*/
.home .header {
	background: transparent;
	transition: .3s;
}
.home .header.scroll {
	background: #FFFFFF;
	transition: .3s;
}
.home .header-logo__symbol_jp path,
.home .header-logo__logotype_jp path {
	fill: #FFFFFF;
	transition: .3s;
}
.home .header.scroll .header-logo__symbol_jp path {
	fill: #237EBE;
	transition: .3s;
}
.home .header.scroll .header-logo__logotype_jp path {
	fill: #000000;
	transition: .3s;
}
/* media query : mobile */
@media screen and (max-width:768px) {
	.home .header.active .header-logo__symbol_jp path {
		fill: #237EBE;
		transition: .3s;
	}
	.home .header.active .header-logo__logotype_jp path {
		fill: #000000;
		transition: .3s;
	}
	.home .header.active .header-menu a {
		color: #000;
	}
	.home .header-menu__trigger span {
		background-color: #FFFFFF;
		transition: .3s;
	}
	.home .header.scroll .header-menu__trigger span,
	.home .header.active .header-menu__trigger span {
		background-color: #000000;
		transition: .3s;
	}
}
/* media query : desktop */
@media screen and (min-width:769px) {
	.home .header-menu a {
		color: #FFF;
		transition: .3s;
	}
	.home .header.scroll .header-menu a {
		color: #000;
		transition: .3s;
	}
	.home #menu-header-corp-nav li {
		border-left: 1px solid #FFF;
		transition: .3s;
	}
	.home .header-menu__catalogue a:before {
		background: url(../img/icon-book-open-line__white.svg) no-repeat center / contain;
		transition: .3s;
	}
	.home .header-menu__contact a:before {
		background: url(../img/icon-envelope-line__white.svg) no-repeat center / contain;
		transition: .3s;
	}
	.home .header.scroll #menu-header-corp-nav li {
		border-left: 1px solid #000;
		transition: .3s;
	}
	.home .header.scroll .header-menu__catalogue a:before {
		background: url(../img/icon-book-open-line__black.svg) no-repeat center / contain;
		transition: .3s;
	}
	.home .header.scroll .header-menu__contact a:before {
		background: url(../img/icon-envelope-line__black.svg) no-repeat center / contain;
		transition: .3s;
	}
}
/* 3.2.0 home-mv
--------------------------------------------------------------*/
.home-mv {
	opacity: 0;
	margin: 0;
	padding: 0;
	animation-delay: 0s;
    animation: fade-in 2s ease-out forwards;
}
@keyframes fade-in {
    100% {  opacity: 1;}
}
.home-mv .home-mv__box {
	height: 100%;
	display: flex;
    align-items: center;
    justify-content: center;
}
.home-h1 {
	text-align: center;
}
.home-h1 h1 {
	font-family: 'Jost', sans-serif;
    font-weight: 600;
	line-height: 1;
    color: #FFF;
	margin-bottom: 1rem;
}
.home-h1 p {
	font-weight: 500;
	line-height: 1.5;
	color: #FFF;
	margin-bottom: 1rem;
}
.home-h1 h1 {
	animation-delay: 1s;
	animation: slide-in1 2s cubic-bezier(0.25, 1, 0.5, 1) 1 forwards;
}
.home-h1 p {
	animation-delay: 1.5s;
	animation: slide-in2 4s cubic-bezier(0.25, 1, 0.5, 1) 1 forwards;
}
.home-h1 button {
	animation-delay: 2s;
	animation: slide-in3 4s cubic-bezier(0.25, 1, 0.5, 1) 1 forwards;
}
@keyframes slide-in1 {
	0% {
	  transform: translateY(-70px);
	  opacity: 0;
	}
	100% {
	  transform: translateY(0);
	  opacity: 1;
	}
}
@keyframes slide-in2 {
	0% {
	  transform: translateY(-77px);
	  opacity: 0;
	}
	100% {
	  transform: translateY(0);
	  opacity: 1;
	}
}
@keyframes slide-in3 {
	0% {
	  transform: translateY(-85px);
	  opacity: 0;
	}
	100% {
	  transform: translateY(0);
	  opacity: 1;
	}
}
/* media query : mobile */
@media screen and (max-width:768px) {
	.home-mv .home-mv__box {
		height: 100svh;
	}
	.home-h1 h1 {
		font-size: 3rem;
	}
	.home-h1 p {
		font-size: 1.3rem;
	}

}
/* media query : desktop */
@media screen and (min-width:769px) {
	.home-mv {
		height: 100%;
    	height: 100vh;
	}
	.home-h1 h1 {
		font-size: 7rem;
	}
	.home-h1 p {
		font-size: 2rem;
	}

}

/* mov */
.home-mv__view {
	position: absolute;
    top: 0;
	width: 100%;
    height: 100%;
    left: 0;
}
.home-mv__view img {
	width: 100%;
	height: 100%;
    object-fit: cover;
}
.zoom {
	overflow: hidden;
}
.zoom img {
	animation: animationZoom 20s ease-in-out infinite;
}
@keyframes animationZoom {
	50% { transform:scale(1.05)} 
}

/* scroll */
.home-scroll {
	position:absolute;
	height:120px;
	left: 50%;
	z-index: 3;
}
.home-scroll__bar {
	position: absolute;
	left:-6px;
	color: #FFFFFF;
	font-size: 0.7rem;
	letter-spacing: 0.05em;
}
.home-scroll::after {
	content: "";
	position: absolute;
	top: 0;
	width: 2px;
	background: linear-gradient(0deg,#7f3bff 0,#3573ff 100%);
	background: -webkit-linear-gradient(90deg, #7f3bff 0,#3573ff 100%);
	animation: scroll-bar 1.4s ease-in-out infinite;
	opacity:0;
}
.home-scroll__txt {
	-ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
    display: block;
    line-height: 1;
    white-space: nowrap;
    margin: 0 auto;
    color: #FFFFFF;
}

/* media query : mobile */
@media screen and (max-width:768px) {
	.home-scroll {
		bottom: 20px;
	}
	.home-scroll__bar {
		top: 10px;
	}
	.home-scroll__txt {
	}
	@keyframes scroll-bar {
		0%{
			height:0;
			top:60px;
			opacity: 0;
		}
		30%{
			opacity: 1;
			height:60px;
		}
		100%{
			height:0;
			opacity: 0;
			top:120px;
		}
	}
}
/* media query : desktop */
@media screen and (min-width:769px) {
	.home-scroll {
		bottom: 40px;
	}
	.home-scroll__bar {
		top: -56px;
	}
	@keyframes scroll-bar {
		0%{
			height:0;
			top:0;
			opacity: 0;
		}
		30%{
			opacity: 1;
			height:120px;
		}
		100%{
			height:0;
			opacity: 0;
			top:120px;
		}
	}

}
.mv-news {
	width: 100%;
	z-index: 100;
	bottom: 0;
	left: 0;
	background: #2f50d9;
	color: #FFF;
}
.mv-news a {
	color: #FFF;
}
.mv-news__h2 {
	font-family: 'Jost', sans-serif;
	font-size: 1.5rem;
    font-weight: 500;
    line-height: 1;
	text-transform: uppercase;
}
.mv-news__list .mv-news__item {
	display: flex !important;
	align-items: center;
}
.mv-news__date {
	min-width: 7rem;
    margin-right: 1rem;
}
.mv-news__category {
	background: #FFF;
    color: #2f50d9;
    min-width: 7rem;
    text-align: center;
    margin-right: 1.5rem;
    border-radius: 1.25rem;
}
.mv-news__button {
	font-family: 'Jost', sans-serif;
	font-size: 1rem;
    font-weight: 500;
    line-height: 1;
	text-transform: uppercase;
}
/* media query : mobile */
@media screen and (max-width:768px) {
	.mv-news {
		padding: 1rem 0;
	}
	.mv-news__list {
		width: 100%;
	}
	.mv-news__h2 {
		width: 100%;
		margin-bottom: 0.5rem;
	}
	.mv-news__list .mv-news__item {
		flex-wrap: wrap;
	}
	.mv-news__item {
		font-size: 0.825rem;
	}
	.mv-news__title {
		margin-top: 0.5rem;
		line-height: 1.5;
	}
	.mv-news__button {
		display: none;
	}
}
/* media query : desktop */
@media screen and (min-width:769px) {
	.mv-news {
		position: absolute;
		padding: 1.5rem 0;
	}
	.mv-news .container {
		display: flex;
		align-items: center;
	}
	.mv-news__h2 {
		width: 5rem;
		padding-right: 2rem;
		margin-right: 2rem;
		border-right: 2px solid #fff;
	}
	.mv-news__list {
		width: calc(100% - 13rem);
	}
	.mv-news__button {
		width: 4rem;
	}
	
}
/* 3.2.0 home-banner
--------------------------------------------------------------*/
.home-banner {
	background: #F0F4F7;
    padding: 2rem 0;
}

.home-banner li {
	border-radius: 1rem;
    overflow: hidden;
    line-height: 0;
}
.home-banner a {
	display: block;
}
.home-banner img {

}
/* media query : mobile */
@media screen and (max-width:768px) {
	.home-banner ul {
		margin-bottom: -2rem;
	}
	.home-banner li {
		margin-bottom: 2rem;
	}
}
/* media query : desktop */
@media screen and (min-width:769px) {
	.home-banner ul {
		display: flex;
		align-items: center;
		justify-content: center;
	}
	.home-banner li {
		max-width: 30rem;
		margin: 0 1rem;
	}
}
/* 3.2.0 home-main
--------------------------------------------------------------*/
.home-h2 {
	margin-bottom: 3rem;
}
.home-h2 h2 {
	font-size: 1rem;
    font-weight: 500;
}
.home-h2 p {
	font-family: 'Jost', sans-serif;
    font-weight: 500;
    line-height: 1;
	text-transform: uppercase;
}
.home-desc {
	margin-bottom: 3rem;
}
.home-wrap {
	overflow: hidden;
}
/* media query : mobile */
@media screen and (max-width:768px) {
	.home-h2 h2 {
		margin-bottom: 0.5rem;
	}
	.home-h2 p {
		font-size: 2.6rem;
	}
	.home-wrap {

	}
}
/* media query : desktop */
@media screen and (min-width:769px) {
	.home-h2 h2 {
		margin-bottom: 1rem;
	}
	.home-h2 p {
		font-size: 3.7rem;
	}
}
/*
@media screen and (max-width:1275px) {
	.home-wrap {
		padding-left: 2.5rem;
		padding-right: 2.5rem;
	}
}
@media screen and (min-width:1276px) {
	.home-wrap {
		margin-left: calc(50% - 42.5rem);
	}
}
*/
/* 3.2.0 home-products
--------------------------------------------------------------*/
.home-products__slide {
	margin-bottom: 3rem;
}
.home-products__slide li {
	width: 20rem;
	margin-right: 1rem;
	margin-left: 1rem;
}
.home-products__slide a {
	display: block;
}
.home-products__img {
	position: relative;
	margin-bottom: 0.5rem;
}
.home-products__img:before {
    display: block;
    content: "";
}
.home-products__img img {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
}
.home-products__txt {

}
.home-products__eng {
	text-transform: uppercase;
}
.home-products__title {
	font-size: 1.2rem;
	font-weight: 500;
    line-height: 1.5;
}
/* media query : mobile */
@media screen and (max-width:768px) {
	.home-products__img:before {
		padding-top: 100%;
	}
}
/* media query : desktop */
@media screen and (min-width:769px) {
	.home-products__img:before {
		padding-top: 150%;
	}
}
/* 3.2.0 home-cases
--------------------------------------------------------------*/
.home-cases.bgc {
	background: url(../img/home-cases__bg.jpg) no-repeat center/cover;
}
.home-cases .home-h2,
.home-cases .home-desc {
	color: #FFF;
}
.home-cases__slide,
.home-blog__slide {
	margin-left: 0 !important;
}
.home-cases__slide .archive-post__item,
.home-blog__slide .archive-post__item {
	margin-left: 1rem;
	margin-right: 1rem;
}
/* media query : mobile */
@media screen and (max-width:768px) {
}
/* media query : desktop */
@media screen and (min-width:769px) {
	.home-cases.bgc {
		background-attachment: fixed;
	}
}
/* 3.2.0 home-about
--------------------------------------------------------------*/
.home-about {

}
.home-about__list {
	margin-bottom: -2rem;
}
.home-about__list li {
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
}
a.home-about__title {
	display: block;
    color: #FFF;
    background: #2F50D9;
}
.home-about__title h3 {
	font-weight: 500;
	line-height: 1;
}
.home-about__title p {
	font-weight: 500;
	line-height: 1;
}
.home-about__title .img-box:before {
	padding-top: 40%;
}
/* media query : mobile */
@media screen and (max-width:768px) {
	.home-about__title h3 {
		font-size: 0.825rem;
		padding: 1rem 1.5rem 0.5rem;
	}
	.home-about__title p {
		font-size: 1.5rem;
		padding: 0rem 1.5rem 0.8rem;
	}
}
/* media query : desktop */
@media screen and (min-width:769px) {
	.home-about__list {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
	}
	.home-about__list li {
		width: calc(50% - 1rem);
	}
	.home-about__title h3 {
		font-size: 1rem;
		padding: 1rem 2rem 0.5rem;
	}
	.home-about__title p {
		font-size: 2rem;
		padding: 0rem 2rem 1rem;
	}
}
/* 3.2.0 home-corporate
--------------------------------------------------------------*/
.home-corporate {
	height: 60%;
	height: 60vh;
	height: 60svh;
}
.home-corporate.bgc {
	background: url(../img/home-corporate__bg.jpg) no-repeat center/cover;
}
.home-corporate .home-h2,
.home-corporate .home-desc {
	color: #FFF;
}
.home-desc {

}
/* media query : mobile */
@media screen and (max-width:768px) {
}
/* media query : desktop */
@media screen and (min-width:769px) {
	.home-corporate.bgc {
		background-attachment: fixed;
	}
}
/* 3.2.0 home-recruit
--------------------------------------------------------------*/
.home-recruit {

}
.home-recruit__list {
	display: flex;
	margin-top: 3rem;
}
.home-recruit__list:after {
	content: "";
    display: block;
    position: absolute;
	background: #FFF;
	bottom: 9rem;
}
.home-recruit__list a {
	display: flex;
    justify-content: center;
    align-items: center;
	flex-direction: column;
	line-height: 1;
	color: #FFF;
}
.home-recruit__list a:after {
	content: "";
    display: block;
    width: 1rem;
    height: 1rem;
    right: 1rem;
    top: calc(50% - 0.5rem);
    background: url(../img/arrow-right__white.svg) no-repeat center/contain;
}
.home-recruit__list a p {
	font-family: 'Jost', sans-serif;
    font-weight: 600;
	margin-bottom: 0.5rem;
}
.home-recruit__list a h3 {
	font-size: 2rem;
	font-weight: 500;
    line-height: 1;
	margin-bottom: 1rem;
}
.home-recruit__new {
	background: url(../img/home-recruit__new.jpg) no-repeat center/cover;
}
.home-recruit__career {
	background: url(../img/home-recruit__career.jpg) no-repeat center/cover;
}
/* media query : mobile */
@media screen and (max-width:768px) {
	.home-recruit__list {
		flex-direction: column;
	}
	.home-recruit__list:after {
		width: 1px;
		height: 5rem;
		left: calc(50% - 0.5px);
	}
	.home-recruit__list a {
		padding: 6rem 0 2rem;
	}
	.home-recruit__list a h3 {
		font-size: 1.5rem;
	}
}
/* media query : desktop */
@media screen and (min-width:769px) {
	.home-recruit__list:after {
		width: 20vw;
		height: 1px;
		left: calc(50% - 10vw);
	}
	.home-recruit__list li {
		width: 50%;
	}
	.home-recruit__list a {
		padding: 14rem 0 6rem;
	}
	.home-recruit__list a h3 {
		font-size: 2rem;
	}
}
/* 3.2.0 home-blog
--------------------------------------------------------------*/
.home-blog {
	
}
/* 3.2.0 home-news
--------------------------------------------------------------*/
.home-news {

}
.home-news__list {
	background: #FFF;
	margin-bottom: 3rem;
}
.home-news__list li {
	padding-top: 1.5rem;
    padding-bottom: 1.5rem;
	border-bottom: 1px solid #ADBDC9;
}
.home-news__list li:first-child {
	padding-top: 0;
}
a.home-news__link {
	display: flex;
	align-items: center;
}
.home-news__date {
	min-width: 7rem;
	margin-right: 1rem;
}
.home-news__category {
	background: #2f50d9;
    color: #FFF;
    min-width: 7rem;
    text-align: center;
	margin-right: 1.5rem;
	border-radius: 1.25rem;
}
.home-news__title {

}
/* media query : mobile */
@media screen and (max-width:768px) {
	.home-news__list {
		padding: 1rem;
	}
	.home-news__list li {
		padding-top: 1rem;
		padding-bottom: 1rem;
	}
	a.home-news__link {
		flex-wrap: wrap;
	}
	.home-news__title {
		margin-top: 0.5rem;
		line-height: 1.5;
	}
}
/* media query : desktop */
@media screen and (min-width:769px) {
	.home-news__list {
		padding: 4rem;
	}
	.home-news__list li {
		padding-top: 1.5rem;
		padding-bottom: 1.5rem;
	}
}
