@charset "UTF-8";
/* CSS Document */
/*=================================
01.ページ内共通
02.kv_area
03.mission_area
04.service_area
05.portfolio_are
06.other_area
07.@media
==================================*/

/*=================================
ページ内共通
==================================*/
body{
	position: relative;
}
body::before {
    content: "";
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100vh;
    background: url(/common/images/top/service_bg.png) center center / cover no-repeat;
    background-position: center center;
}
.top_h2{
	font-size: 3rem;
	text-align: center;
	color: #0076CE;
	margin-bottom: 60px;
}
.top_h2.color_white,.top_h3.color_white{
	color: #ffffff;
}
.top_h3{
	font-size: 2.25rem;
}

/*=================================
kv_area
==================================*/
.kv_area{
	position: relative;
	overflow: hidden;
	background-color: #ffffff;
	border-bottom: 1px solid #ffffff;
}
.kv_area::before{
	content: "";
	width: 100%;
	height: 100%;
	background: url(/common/images/top/kv_img.png) no-repeat;
	background-size: cover;
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
}
.kv_area.active::before{
	animation: fadeIn 15s ease 0s forwards;
}
@keyframes fadeIn {
	0% {
		transform: scale(1);
		opacity: 0;
	}
	100% {
		transform: scale(1.2);
	}
	30%,100% {
		opacity: 1;
	}
}
.kv_area_inner{
	min-height: 650px;
	height: 100vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
	position: relative;
}
.kv_area_inner h1{
	margin-bottom: 40px;
}
.kv_area_inner h1 div{
	overflow: hidden;
}
.kv_area_inner h1 div span{
	font-size: 3rem;
	color: #ffffff;
	text-shadow: 0px 3px 6px #00000088;
	opacity: 0;
	display: block;
	line-height: 1.4;
}
.kv_area.active h1 div span{
	animation: fadeInB 1s cubic-bezier(0.25, 1, 0.5, 1) 2s forwards;
}
@keyframes fadeInB {
	0% {
		transform: translateY(100px);
		opacity: 0;
	}
	100% {
		transform: translateY(0);
	}
	70%,100% {
		opacity: 1;
	}
}
.kv_area_inner p{
	font-size: 1.125rem;
	color: #ffffff;
	text-shadow: 0px 3px 6px #00000052;
	opacity: 0;
}
.kv_area.active p{
	animation: fadeInP 1s cubic-bezier(0.25, 1, 0.5, 1) 2.8s forwards;
}
@keyframes fadeInP {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
.kv_area .nmlBtn_item{
    transform: translateY(50px);
    opacity: 0;
}
.kv_area.active .nmlBtn_item{
	animation: slideInB 1s cubic-bezier(0.25, 1, 0.5, 1) 2.8s forwards;
}
.scroll_icon{
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	color: #ffffff;
	padding-bottom: 80px;
	font-weight: 300;
}
.scroll_icon_arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30px;
  height: 40px;
  transform: translate(-50%, -50%);
  animation: scroll_01 3s infinite;
}
.scroll_icon_arrow::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  height: 100%;
  width: 1px;
  background-color: #fff;
  transform: translateX(-50%);
}
.scroll_icon_arrow::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 50%;
  width: 12px;
  height: 12px;
  border-bottom: 1px solid #fff;
  transform: translateX(-50%) rotate(-45deg);
}
@keyframes scroll_01 {
  0% {
    transform: translate(-50%, -50%) translateY(-10px);
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) translateY(10px);
    opacity: 0;
  }
}


/*=================================
mission_area
==================================*/
.mission_area{
	background: url(/common/images/top/mission_bg.png) no-repeat;
	background-size: cover;
	background-position: center;
	padding: 120px 0;
	text-align: center;
	position: relative;
}
.mission_area::after{
	content: "MISSION";
    font-size: 8.75rem;
    font-family: "Noto Serif", serif;
    font-optical-sizing: auto;
    font-weight: 300;
    opacity: 0.1;
    color: #000000;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    position: absolute;
    top: 0;
    left: -10px;
    line-height: 1;
}
.mission_area p{
	font-size: 1.75rem;
	margin-bottom: 50px;
	line-height: 2;
}
.mission_area p strong{
	font-size: 1.75rem;
	color: #0076CE;
	font-weight: 600;
}
/*=================================
service_area
==================================*/
.service_area{
	padding: 100px 0;
	position: relative;
	overflow: hidden;
}
.service_area::after{
	content: "SERVICE";
    font-size: 8.75rem;
    font-family: "Noto Serif", serif;
    font-optical-sizing: auto;
    font-weight: 300;
    opacity: 0.1;
    color: #000000;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    position: absolute;
    top: 0;
    right: -25px;
    line-height: 1;
	z-index: 0;
}
.service_area .divideBox{
	margin-bottom: 50px;
	position: relative;
	z-index: 1;
}
.service_area .service_area_bgImage:nth-child(3) .divideBox{
	flex-direction: row-reverse;
}

.service_area .service_area_bgImage:nth-child(2)  .divideBox .service_area_text_box{
	margin: 20px 0 0 40px;
}
.service_area .service_area_bgImage:nth-child(3)  .divideBox .service_area_text_box{
	margin: 20px 40px 0 0;
	font-feature-settings: "palt";
}
.service_area h3 span{
	font-size: 1.5rem;
	white-space: nowrap;
}
.service_area_text_box p{
	margin: 60px 0;
	color: #ffffff;
	font-size: 1.125rem;
	line-height: 2;
}
.service_area_bgImage{
	position: relative;
	padding-bottom: 1px;
	margin-bottom: 80px;
}
.service_area_bgImage::before{
	content: "";
	width: 42%;
	height: 500px;
	background: url(/common/images/top/service_area_bg_dotto.png);
	background-size: 38%;
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: 0;
	opacity: 0.6;
}
.service_area .service_area_bgImage:nth-child(3)::before{
	left: auto;
	right: 0;
}
.service_area_bottom_text{
	text-align: center;
	color: #ffffff;
}
.service_area_bottom_text p{
	margin-bottom: 40px;
}
/*=================================
portfolio_are
==================================*/
.portfolio_are{
	background: url(/common/images/top/portfolio_bg.png) no-repeat;
	background-size: cover;
	background-position: center;
	padding: 100px 0;
	position: relative;
}
.portfolio_are::after{
	content: "PORTFOLIO";
    font-size: 8.125rem;
    font-family: "Noto Serif", serif;
    font-optical-sizing: auto;
    font-weight: 300;
    opacity: 0.1;
    color: #000000;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    position: absolute;
    top: 0;
    left: -10px;
    line-height: 1;
	z-index: 0;
}
.portfolio_are .divideBox{
	position: relative;
	z-index: 1;
	gap: 0 40px;
	margin-bottom: 60px;
}
.portfolio_are .divideBox table{
	table-layout: auto;
}
.portfolio_are .divideBox thead th{
	text-align: center;
	background-color: #0076CE;
}
/*.portfolio_are .divideBox tbody th{
	width: 35%;
	text-align: center;
}
.portfolio_are .divideBox tbody td{
	width: 65%;
}*/
.portfolio_are .nmlBtn{
	position: relative;
	z-index: 1;
}
/*=================================
other_area
==================================*/
.other_area ul li{
	background-color: #000000;
	position: relative;
	border-right: 1px solid #ffffff;
}
.other_area ul li:last-child{
	border-right: none;
}
.other_area ul li a{
	position: relative;
	display: block;
}
.other_area ul li figure {
    position: relative;
    width: 100%;
    padding-top: 45%;
    overflow: hidden;
}
.other_area ul li figure img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    object-fit: cover;
    transition: 0.5s all;
}
.other_area ul li a:hover figure img {
    transform: scale(1.08, 1.08);
	opacity: 0.8;
}
.other_area ul li a div{
	color: #ffffff;
	font-size: 2.75rem;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	text-align: center;
}
.other_area ul li a div span{
	display: block;
	font-size: 1rem;
}
.other_area_arrow {
    position: absolute;
    display: inline-block;
    width: 60px;
    height: 1px;
    margin-top: 29px;
    border-radius: 9999px;
    background-color: #ffffff;
    bottom: 20px;
    right: 20px;
}

.other_area_arrow::before {
  content: "";
  position: absolute;
  top: calc(50% - 2px);
  right: 0;
  width: 20px;
  height: 1px;
  border-radius: 9999px;
  background-color: #ffffff;
  transform: rotate(45deg);
  transform-origin: calc(100% - 2px) 50%;
}
/*=================================
@media
==================================*/

/* デバイス幅が1100px以上 */
@media screen and (min-width: 1100px) {
	* {font-size: 16px;}
}
/* デバイス幅が767px以下 */
@media screen and (max-width: 767px){
	/*=================================
	01.ページ内共通
	02.kv_area
	03.mission_area
	04.service_area
	05.portfolio_are
	06.other_area
	==================================*/

	/*=================================
	ページ内共通
	==================================*/
	.top_h2{
		font-size: 2rem;
		margin-bottom: 40px;
	}
	.top_h3{
		font-size: 1.75rem;
	}
	/*=================================
	kv_area
	==================================*/
	.kv_area_inner.w_1100{
		padding: 0 10px;
	}
	.kv_area_inner h1 div span{
		font-size: 1.75rem;
		font-feature-settings: "palt";
	}
	.kv_area_inner p{
		font-size: 0.875rem;
	}
	/*=================================
	mission_area
	==================================*/
	.mission_area{
		background: url(/common/images/top/mission_bg_sp.png) no-repeat;
		background-size: cover;
		background-position: center;
		padding: 60px 0;
	}
	.mission_area::after{
		font-size: 3.75rem;
		left: -4px;
	}
	.mission_area p,.mission_area p strong{
		font-size: 1.125rem;
	}
	/*=================================
	service_area
	==================================*/
	.service_area{
		padding: 60px 0;
		background-position: center left;
	}
	.service_area::after{
		font-size: 3.75rem;
		right: -11px;
	}
	.service_area_bgImage{
		margin-bottom: 60px;
	}
	.service_area_bgImage::before{
		width: 80%;
		height: 310px;
		bottom: auto;
		top: 40px;
	}
	.service_area .service_area_bgImage:nth-child(3)::before{
		top: 90px;
	}
	.service_area .service_area_bgImage:nth-child(2) .divideBox .service_area_text_box,
	.service_area .service_area_bgImage:nth-child(3) .divideBox .service_area_text_box{
		margin: 40px 0 0;
	}
	.service_area_text_box p{
		margin: 20px 0 30px;
		font-size: 1rem;
	}
	.service_area_bottom_text{
		margin: 0 20px;
	}
	.service_area_bottom_text p{
		text-align: left;
	}

	/*=================================
	portfolio_are
	==================================*/
	.portfolio_are{
		padding: 60px 0;
	}
	.portfolio_are::after{
		font-size: 3.75rem;
		left: -4px;
	}
	.portfolio_are .divideBox{
		margin-bottom: 20px;
	}
	.portfolio_are .divideBox_item{
		margin-bottom: 40px;
	}
	.portfolio_are .nmlBtn{
		margin: 0 20px;
	}
	.portfolio_are .divideBox thead th{
		padding: 15px 0;
	}
	/*=================================
	other_area
	==================================*/
	.other_area ul li{
		border-right: none;
		border-bottom: 1px solid #ffffff;
	}
	.other_area ul li:last-child{
		border-bottom: none;
	}
	.other_area ul li figure{
		padding-top: 60%;
	}
	.other_area ul li a div{
		font-size: 2.25rem;
	}
	.other_area ul li a div span{
		font-size: 1rem;
	}
	
}





