@charset "UTF-8";

/*-----------------------------------

	headline

-----------------------------------*/
#headline {
	width: calc(100vw - 200px);
	height: 380px;
	position: relative;
	padding: 120px 0 0 8vw;
	color: #FFF;
}
#headline::before {
	content: "";
	width: 100%;
	height: 100%;
	background: rgb(51,51,51);
	background: linear-gradient(90deg, rgba(51,51,51,0.68) 0%, rgba(171,167,160,0.58) 100%);
	opacity: 0.89;
	mix-blend-mode: multiply;
	position: absolute;
	top: 0;
	left: 0;
}
#headline h1 {
	position: relative;
	font-size: 30px;
	font-weight: 600;
	line-height: 1;
}
#headline h1::before {
	font-size: 60px;
	font-weight: 400;
	font-family: "Poppins", sans-serif;
	letter-spacing: 0.1em;
	line-height: 1;
	display: block;
	margin-bottom: 40px;
}
#headline ul.breadcrumb {
	position: absolute;
	bottom: 20px;
	left: 8vw;
	display: flex;
	column-gap: 55px;
	font-size: 14px;
	font-weight: 500;
	line-height: 1;
	white-space: nowrap;
	overflow-x: auto;
	max-width: 640px;
	padding-bottom: 10px;
}
#headline ul.breadcrumb::-webkit-scrollbar {
	height: 3px;
}
#headline ul.breadcrumb::-webkit-scrollbar-thumb {
	background: rgba(255, 255, 255, 0.5);
}
#headline ul.breadcrumb li {
	position: relative;
}
#headline ul.breadcrumb li:not(:last-child)::after {
	content: "";
	width: 21px;
	height: 1px;
	background: #FFF;
	position: absolute;
	top: 50%;
	left: calc(100% + 17px);
	transform: translateY(-50%);
}
#headline ul.breadcrumb li a {
	color: #FFF;
}
@media screen and (max-width: 1500px) {
	#headline {
		width: calc(100% - 200px);
	}
}
@media screen and (max-width: 1100px) {
	#headline {
		width: calc(100% - 40px);
	}
}
@media screen and (max-width: 840px) {
	#headline {
		height: 260px;
		padding: 60px 0 0 8vw;
	}
	#headline h1 {
		font-size: 24px;
	}
	#headline h1::before {
		font-size: 52px;
		margin-bottom: 30px;
	}
	#headline ul.breadcrumb {
		bottom: 10px;
	}
}
@media screen and (max-width: 640px) {
	#headline {
		width: calc(100% - 20px);
		height: 140px;
		padding: 35px 0 0 8vw;
	}
	#headline h1 {
		font-size: 14px;
	}
	#headline h1::before {
		font-size: 28px;
		margin-bottom: 10px;
	}
	#headline ul.breadcrumb {
		bottom: 5px;
		column-gap: 30px;
		font-size: 10px;
		padding-bottom: 5px;
		width: 90%;
	}
	#headline ul.breadcrumb li:not(:last-child)::after {
		width: 14px;
		left: calc(100% + 8px);
	}
}


/*-- animetion --*/
/* アニメーション前 */
.slidein,
.slidein_later {
	transform: translateY(50px);
	opacity: 0;
  }
  
  /* トリガー発火でis-activeを付与 */
  .slidein.is-active{
	transition: 1s;
	transform: translateY(0);
	opacity: 1;
  }
  .slidein_later.is-active{
	transition: 1.3s;
	transform: translateY(0);
	opacity: 1;
  }
   
  @keyframes slideIn {
	0% {
	  transform: translateY(30px);
	  opacity: 0;
	}
	100% {
	  transform: translateY(0);
	}
	40%,100% {
	  opacity: 1;
	}
  }
   

  