@charset "utf-8";


.index-project-list{
	counter-reset: number 0;
}
.project-item .image{
	overflow: hidden;
}
.project-item .image:after{
	color: #FFF;
	counter-increment: number 1;
	content: counter(number,decimal-leading-zero);
	font-family: "Albert Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
	line-height: 1;
	display: block;
	position: absolute;
}
.project-item .image > div{
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}
.project-item .ttl-wrap > .ttl{
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}
.project-item .detail .ttl-wrap > .ttl .sub{
	background-color: #000;
	color: #FFF;
	font-weight: 500;
	line-height: 1.6;
}
.project-item .detail .ttl-wrap > .ttl .main{
	background-color: #27BDE2;
	color: #FFF;
	font-weight: 500;
	line-height: 1.6;
}
.project-item .detail .ttl-wrap > .jp{
	font-weight: 700;
	line-height: 1.5;
}
.project-item .detail .btn-area > .en{
	background-color: #FD6925;
	color: #FFF;
	font-weight: 500;
	line-height: 1;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.project-item .detail .btn-area > .en:after{
	background-image: url("../../common/img/ic_navi_arrow.svg");
	background-repeat: no-repeat;
	background-size: 100% auto;
	content: "";
	display: block;
}
@media print, screen and (min-width:1025px) {
	.index-project-list{
		margin-top: 100px;
	}
	.project-item:nth-child(n + 2){
		margin-top: 60px;
	}
	.project-item > a{
		display: flex;
		align-items: flex-end;
		padding-bottom: 49.27536%;
		width: 100%;
		position: relative;
	}
	.project-item .image{
		border-radius: 30px;
		width: 100%;
		position: absolute;
		left: 0;
		top: 0;
		z-index: 0;
	}
	.project-item .image:before{
		background: #D5DDEB;
    background: linear-gradient(180deg, rgba(213, 221, 235, 0) 0%, rgba(0, 0, 0, 0.25) 100%);
    content: "";
    display: block;
    width: 100%;
    position: absolute;
    left: 0;
    top: 50%;
    bottom: 0;
    z-index: 1;
	}
	.project-item .image:after{
		font-size: clamp(5rem, 0.2rem + 9.83vw, 12rem);
		right: 50px;
		top: 40px;
		z-index: 1;
		transition: .2s;
	}
	.project-item .image > div{
		padding-bottom: 49.27536%;
		position: relative;
		z-index: 0;
		transition: .8s;
	}
	.project-item .detail{
		display: flex;
		align-items: flex-end;
		justify-content: space-between;
		position: absolute;
		left: 5.7971%;
		right: 5.7971%;
		bottom: 50px;
		z-index: 1;
	}
	.project-item .ttl-wrap > .ttl .sub{
		font-size: clamp(1.1rem, 0.894rem + 0.42vw, 1.4rem);
		padding: 10px 20px;
	}
	.project-item .ttl-wrap > .ttl .main{
		font-size: clamp(1.25rem, 0.393rem + 1.76vw, 2.5rem);
		padding: 10px 20px;
	}
	.project-item .ttl-wrap > .jp{
		color: #FFF;
		font-size: clamp(2rem, 0.629rem + 2.81vw, 4rem);
		margin-top: 20px;
	}
	
	
	.project-item .detail .btn-area{
		display: flex;
		justify-content: flex-start;
		margin-left: 30px;
	}
	.project-item .detail .btn-area > .en{
		border-radius: 70px;
		font-size: clamp(1.2rem, 0.651rem + 1.12vw, 2rem);
		padding: 15px 20px 15px 30px;
		width: 230px;
		transition: .8s;
	}
	.project-item .detail .btn-area > .en:after{
		height: 40px;
		width: 40px;
	}
	@media screen and (min-width: 1025px) and (max-width: 1280px) {
		.project-item .image:after{
			font-size: clamp(4.25rem, 0.2rem + 9.83vw, 8.5rem);
			right: 20px;
			top: 20px;
		}
}
	@media (hover: hover) and (pointer: fine){
		.project-item  a:hover .image > div{
			transform: scale(1.03);
		}
		.project-item  a:hover .detail .btn-area > .en{
			background-color: #0068FE
		}
	}
	
	
	#project01 .image > div{
		background-image: url("../project01/img/thumb_index_pc.jpg");
	}
	#project02 .image > div{
		background-image: url("../project02/img/thumb_index_pc.jpg");
	}
	#project03 .image > div{
		background-image: url("../project03/img/thumb_index_pc.jpg");
	}
	#project04 .image > div{
		background-image: url("../project04/img/thumb_index_pc.jpg");
	}
}
@media screen and (max-width: 1024px){
	.index-project-list{
		margin-top: 40px;
	}
	.project-item:nth-child(n + 2){
		margin-top: 40px;
	}
	.project-item > a{
		position: relative;
	}
	.project-item .image{
		border-top-left-radius: 10px;
		border-top-right-radius: 10px;
		width: 100%;
		position: relative;
	}
	.project-item .image:after{
		font-size: 3.5rem;
		right: 20px;
		bottom: 20px;
		z-index: 1;
	}
	.project-item .image > div{
		padding-bottom: 100%;
		position: relative;
	}
	.project-item .detail{
		background-color: #FFF;
		border-bottom-left-radius: 10px;
		border-bottom-right-radius: 10px;
		padding: 8% 7%;
	}
	.project-item .ttl-wrap > .ttl .sub{
		font-size: 1.3rem;
		padding: 5px 10px;
	}
	.project-item .ttl-wrap > .ttl .main{
		font-size: 1.6rem;
		padding: 5px 10px;
	}
	.project-item .ttl-wrap > .jp{
		font-size: 2.0rem;
		margin-top: 20px;
		margin-bottom: 40px;
	}
	
	
	.project-item .detail .btn-area > .en{
		border-radius: 70px;
		font-size: 2.0rem;
		padding: 20px 30px;
		width: 100%;
	}
	.project-item .detail .btn-area > .en:after{
		height: 30px;
		width: 30px;
	}
	
	
	#project01 .image > div{
		background-image: url("../project01/img/thumb_index_sp.jpg");
	}
	#project02 .image > div{
		background-image: url("../project02/img/thumb_index_sp.jpg");
	}
	#project03 .image > div{
		background-image: url("../project03/img/thumb_index_sp.jpg");
	}
	#project04 .image > div{
		background-image: url("../project04/img/thumb_index_sp.jpg");
	}
}











.project-detail .root-ttl .en,
.project-detail .root-ttl .jp{
  font-weight: 700;
}
.project-detail .page-ttl .page-ttl-wrap > .pj-sub{
  color: #FFF;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
  line-height: 1;
}
.project-detail .page-ttl .page-ttl-wrap > .pj-sub .sub{
  background-color: #1D1D1D;
}
.project-detail .page-ttl .page-ttl-wrap > .pj-sub .main{
  background-color: #27BDE2;
}
.project-detail .page-ttl .page-ttl-wrap > p{
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  line-height: 1.52;
  position: relative;
}
@media print, screen and (min-width:1025px) {
  .project-detail .project-detail-heading{
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 30px;
    margin: 40px auto;
    height: calc(100vh - 180px);
    min-height: 600px;
    width: calc(100% - 80px);
    position: relative;
  }
  .project-detail .project-detail-heading:before{
    color: #FFF;
    font-size: clamp(16rem, 0.855rem + 1.79vw, 20rem);
    font-family: "Albert Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
    line-height: 1;
    display: block;
    position: absolute;
    right: 100px;
    bottom: 100px;
  }
  
  .project-detail .root-ttl{
		color: #1D1D1D;
    display: flex;
    align-items: center;
    position: absolute;
    left: 5.4347826%;
    top: 8.888%;
  }
  .project-detail .root-ttl .en,
  .project-detail .root-ttl .jp{
    line-height: 1;
  }
  .project-detail .root-ttl .en{
    font-size: 1.5rem;
    margin-right: 23px;
  }
  .project-detail .root-ttl .jp{
    font-size: 2.4rem;
  }
  .project-detail .page-ttl{
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    width: auto;
    position: absolute;
    left: 5.4347826%;
    bottom: 8.33%;
  }
  .project-detail .page-ttl .page-ttl-wrap{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .project-detail .page-ttl .page-ttl-wrap > .pj-sub .sub{
    font-size: clamp(1.2rem, 0.855rem + 1.79vw, 1.5rem);
    padding: 12px 20px;
  }
  .project-detail .page-ttl .page-ttl-wrap > .pj-sub .main{
    font-size: clamp(2.0rem, 0.855rem + 1.79vw, 3.0rem);
    padding: 12px 20px;
  }
  .project-detail .page-ttl .page-ttl-wrap > p{
    color: #FFF;
    font-size: clamp(2rem, -1.207rem + 5.01vw, 4.8rem);
    margin-top: 40px;
    white-space: nowrap;
  }
}
@media screen and (max-width: 1024px){
  .project-detail .project-detail-heading{
    margin-top: 20px;
    margin-left: auto;
    margin-right: auto;
    width: 90%;
  }
  .project-detail .project-detail-heading:before{
    color: #FFF;
    font-size: clamp(16rem, 0.855rem + 1.79vw, 20rem);
    font-family: "Albert Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
    line-height: 1;
    display: block;
    position: absolute;
    right: 100px;
    bottom: 100px;
  }
  
  .project-detail .root-ttl{
    display: flex;
    align-items: center;
  }
  .project-detail .root-ttl .en,
  .project-detail .root-ttl .jp{
    line-height: 1;
  }
  .project-detail .root-ttl .en{
    color: #275AF7;
    font-size: 1.2rem;
    margin-right: 13px;
  }
  .project-detail .root-ttl .jp{
    font-size: 1.8rem;
  }
  .project-detail .page-ttl{
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
  }
  .project-detail .page-ttl .page-ttl-wrap{
    display: flex;
    flex-direction: column-reverse;
    align-items: flex-start;
  }
  .project-detail .page-ttl .page-ttl-wrap > .pj-sub{
    margin-top: 30px;
  }
  .project-detail .page-ttl .page-ttl-wrap > .pj-sub .sub{
    font-size: 1.2rem;
    padding: 12px 15px;
  }
  .project-detail .page-ttl .page-ttl-wrap > .pj-sub .main{
    font-size: 2.0rem;
    padding: 10px 15px;
  }
  .project-detail .page-ttl .page-ttl-wrap > p{
    font-size: 2.4rem;
    margin-top: 30px;
  }
  
  
  .project-detail-heading .image-sp{
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 10px;
    padding-bottom: 100%;
    margin-top: 15px;
  }
  .project-detail .project-detail-heading .image-sp:after{
    color: #FFF;
    font-size: 6rem;
    font-family: "Albert Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
    line-height: 1;
    display: block;
    position: absolute;
    right: 30px;
    bottom: 20px;
  }
}




.project-heading-text{
  font-weight: 500;
  line-height: 2;
}
@media print, screen and (min-width:1025px) {
  .project-heading-text{
    font-size: clamp(1.6rem, 0.855rem + 1.79vw, 2.0rem);
    text-align: center;
    margin-top: 120px;
  }
}
@media screen and (max-width: 1024px){
  .project-heading-text{
    font-size: 1.8rem;
    margin-top: 50px;
  }
}




.project-member-sec .ttl{
  display: flex;
  justify-content: center;
  text-align: center;
  position: relative;
}
.project-member-sec .ttl:before{
  background-color: #275AF7;
  content: "";
  display: block;
  height: 1px;
  width: 100%;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: -1;
}
.project-member-sec .ttl .en{
  background-color: #EAEAEA;
  color: #275AF7;
  font-weight: 700;
  line-height: 1;
}
.employee-item{
  background-color: #F4F4F4;
}
.employee-item .image{
  overflow: hidden;
}
.employee-name > .jp{
  font-weight: 500;
}
.employee-name > .en{
  color: #275AF7;
  font-weight: 700;
}
.employee-profile{
  font-weight: 500;
  line-height: 1.76;
}
@media print, screen and (min-width:1025px) {
  .project-member-sec{
    margin-top: 120px;
  }
	.project-member-sec.col1{
		margin-left: auto;
		margin-right: auto;
		max-width: 670px;
	}
  .project-member-sec .ttl .en{
    font-size: clamp(2.3rem, 0.855rem + 1.79vw, 4.6rem);
    padding: 0 30px;
  }
  .employee-list{
    display: flex;
    justify-content: space-between;
    margin-top: 100px;
  }
  .employee-item{
    border-radius: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    width: 48.55%;
  }
	.project-member-sec.col1 .employee-item{
		width: 100%;
	}
  .employee-item .image{
    border-radius: 15px;
    width: 38.095238%;
  }
  .employee-item .detail{
    width: 55.5555%;
  }
  .employee-name > .jp.sub{
    font-size: 1.3rem;
  }
  .employee-name > .jp{
    font-size: 2.0rem;
  }
  .employee-name > .en{
    font-size: 1.5rem;
  }
  .employee-profile{
    font-size: 1.3rem;
    margin-top: 10px;
  }
}
@media screen and (max-width: 1024px){
  .project-member-sec{
    margin-top: 75px;
    margin-left: -5%;
    margin-right: -5%;
  }
  .project-member-sec .ttl .en{
    font-size: 2.4rem;
    padding: 0 10px;
  }
  .employee-list{
    margin-top: 40px;
    padding-left: 5%;
    padding-right: 5%;
  }
  .employee-item{
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 10px;
    margin-top: 20px;
  }
  .employee-item .image{
    border-radius: 15px;
    width: 38.095238%;
  }
  .employee-item .detail{
    width: 55.5555%;
  }
  .employee-name > .jp.sub{
    font-size: 1.1rem;
  }
  .employee-name > .jp{
    font-size: 1.8rem;
  }
  .employee-name > .en{
    font-size: 1.2rem;
  }
  .employee-profile{
    font-size: 1.1rem;
    margin-top: 10px;
  }
}



.project-section .phase > .en{
  font-weight: 700;
  line-height: 1;
  display: flex;
}
.project-section .phase > .en > b{
  color: #275AF7;
  font-weight: 300;
}
.project-section .detail .ttl{
  font-weight: 500;
  line-height: 1.6;
}
.project-section .detail .images{
  display: flex;
  justify-content: space-between;
}
.project-section .detail .images > .image{
  width: 48.148%;
}
.project-section .detail .image{
  overflow: hidden;
}
.project-section .detail p a{
	color: #275AF7;
}

.project-section .detail > *:last-child,
.project-section .detail > *:last-child .image{
	margin-bottom: 0 !important;
}
@media print, screen and (min-width:1025px) {
  .project-section{
    display: flex;
    margin-top: 140px;
    position: relative;
  }
  .project-section:before{
    background-color: #BFBFBF;
    content: "";
    display: block;
    width: 3px;
    position: absolute;
    left: 287px;
    top: 0;
    bottom: 0;
  }
  .project-section .phase{
    border-right: 3px solid #275AF7;
    padding-right: 100px;
    height: 165px;
    width: 290px;
    position: sticky;
    left: 0;
    top: 140px;
  }
  .project-section .phase > .en{
    font-size: clamp(1.8rem, 0.855rem + 1.79vw, 2.4rem);
    flex-direction: column;
    align-items: center;
    padding-left: 20px;
    width: 290px;
  }
  .project-section .phase > .en > b{
    font-size: clamp(12rem, 0.855rem + 1.79vw, 16rem);
    margin-top: 20px;
  }
  .project-section .detail{
    margin-left: 90px;
    width: calc(100% - 480px);
  }
  .project-section .detail .ttl{
    font-size: min(1.98vw,3.2rem);
  }
  .project-section .detail > p{
    margin-top: 30px;
  }
  .project-section .detail .image{
    border-radius: 30px;
    margin-top: 60px;
    margin-bottom: 60px;
  }
  
  .project-detail .image.between{
    margin-top: 140px;
  }
}
@media screen and (max-width: 1024px){
  .project-section{
    margin-top: 80px;
    margin-left: -5%;
    margin-right: -5%;
  }
  .project-section:before{
    background-color: #275AF7;
    content: "";
    display: block;
    height: 2px;
    width: 100%;
  }
  .project-section .phase{
    border-bottom: 2px solid #BFBFBF;
    padding: 15px 5%;
    width: 100%;
  }
  .project-section .phase > .en{
    font-size: 1.6rem;
    display: flex;
    align-items: center;
  }
  .project-section .phase > .en > b{
    font-size: 5.0rem;
    margin-left: 15px;
  }
  .project-section .detail{
    padding-left: 5%;
    padding-right: 5%;
  }
  .project-section .detail .ttl{
    font-size: 1.8rem;
    margin-top: 30px;
  }
  .project-section .detail > p{
    margin-top: 30px;
  }
  .project-section .detail .image{
    border-radius: 10px;
    margin-top: 30px;
  }
  
  .project-detail .image.between{
    margin-top: 65px;
  }
  .project-detail .image.between img{
    height: 80vw;
    width: 100%;
    object-fit: cover;
  }
}



.next-vision{
  overflow: hidden;
}
.next-vision .detail{
  background-color: #26BDE2;
}
.next-vision .detail .en{
  color: #FFF;
  font-weight: 500;
  line-height: 1;
}
.next-vision .detail .en:after{
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  display: block;
}
.next-vision-employee-item > .profile .en{
  color: #275AF7;
  font-weight: 700;
  line-height: 1.4;
}
.next-vision-employee-item > .profile .jp{
  font-weight: 500;
}
@media print, screen and (min-width:1025px) {
  .next-vision-sec{
    margin-top: 120px;
  }
  .next-vision{
    display: flex;
    flex-direction: row-reverse;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
  }
  .next-vision .detail{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34.05797%;
  }
  .next-vision .detail .en{
    font-size: clamp(6.4rem, 0.855rem + 1.79vw, 8.4rem);
  }
  .next-vision .detail .en:after{
    background-image: url("../img/bg_arrow.svg");
    padding-bottom: 12.04379%;
    width: 100%;
  }
  .next-vision .image{
    width: 65.94203%;
  }
  
  .next-vision-employee-list{
    background-color: #FFF;
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0 7% 6%;
  }
  .next-vision-employee-item{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 40px;
    width: 45.7627%;
  }
	.next-vision-employee-list.col1 .next-vision-employee-item{
		justify-content: flex-start;
		margin-left: auto;
		margin-right: auto;
		max-width: 900px;
		width: 90%;
	}
  .next-vision-employee-item > .image{
    align-self: center;
    width: 20.37%;
  }
	.next-vision-employee-list.col1 .next-vision-employee-item > .image{
		margin-right: 3.33%;
		width: 12.22%;
	}
  .next-vision-employee-item > .profile{
    align-self: center;
    width: 75%;
  }
  .next-vision-employee-item > .profile .en{
    font-size: clamp(1.3rem, 0.855rem + 1.79vw, 1.5rem);
  }
  .next-vision-employee-item > .profile .jp{
    font-size: clamp(2.0rem, 0.855rem + 1.79vw, 3.0rem);
  }
  .next-vision-employee-item > .detail{
    font-size: clamp(1.4rem, 0.855rem + 1.79vw, 1.6rem);
    margin-top: 30px;
    width: 100%;
  }
}
@media screen and (max-width: 1024px){
  .next-vision-sec{
    margin-top: 120px;
  }
  .next-vision{
    margin-left: -5%;
    margin-right: -5%;
  }
  .next-vision .detail{
    padding: 7% 5%;
  }
  .next-vision .detail .en{
    font-size: 3.0rem;
    width: 61.7647%;
  }
  .next-vision .detail .en:after{
    background-image: url("../img/bg_arrow_sp.svg");
    margin-top: -6%;
    padding-bottom: 9.38967%;
    width: 100%;
  }
  
  .next-vision-employee-list{
    margin-top: 30px;
  }
  .next-vision-employee-item{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .next-vision-employee-item:nth-child(n + 2){
    margin-top: 60px;
  }
  .next-vision-employee-item > .image{
    width: 26.47%;
  }
  .next-vision-employee-item > .profile{
    align-self: center;
    width: 70.588%;
  }
  .next-vision-employee-item > .profile .en{
    font-size: 1.3rem;
  }
  .next-vision-employee-item > .profile .jp{
    font-size: 2.4rem;
  }
  .next-vision-employee-item > .detail{
    font-size: 1.6rem;
    margin-top: 20px;
    width: 100%;
  }
}


.next-vision-sec + .note-list{
	margin-top: 30px;
}
.image.between + .note-list{
	margin: 5px 10px 0;
	text-align: right;
}
.project-section .detail > .image.note{
	margin-bottom: 0;
}
.project-section .detail > .image.note + .note-list{
	margin: 5px 0 60px;
	text-align: right;
}